Vector128.GreaterThanAll<T> Metoda
Definice
Důležité
Některé informace platí pro předběžně vydaný produkt, který se může zásadně změnit, než ho výrobce nebo autor vydá. Microsoft neposkytuje žádné záruky, výslovné ani předpokládané, týkající se zde uváděných informací.
Porovná dva vektory a určí, jestli jsou všechny prvky větší.
public:
generic <typename T>
where T : value class static bool GreaterThanAll(System::Runtime::Intrinsics::Vector128<T> left, System::Runtime::Intrinsics::Vector128<T> right);
public static bool GreaterThanAll<T> (System.Runtime.Intrinsics.Vector128<T> left, System.Runtime.Intrinsics.Vector128<T> right) where T : struct;
static member GreaterThanAll : System.Runtime.Intrinsics.Vector128<'T (requires 'T : struct)> * System.Runtime.Intrinsics.Vector128<'T (requires 'T : struct)> -> bool (requires 'T : struct)
Public Function GreaterThanAll(Of T As Structure) (left As Vector128(Of T), right As Vector128(Of T)) As Boolean
Parametry typu
- T
Typ prvků vektoru.
Parametry
- left
- Vector128<T>
Vektor, který se má porovnat s right
.
- right
- Vector128<T>
Vektor, který se má porovnat s left
.
Návraty
true
pokud byly všechny prvky větší left
než odpovídající prvek v right
.