Vector256.GreaterThanAny<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 některé prvky větší.
public:
generic <typename T>
where T : value class static bool GreaterThanAny(System::Runtime::Intrinsics::Vector256<T> left, System::Runtime::Intrinsics::Vector256<T> right);
public static bool GreaterThanAny<T> (System.Runtime.Intrinsics.Vector256<T> left, System.Runtime.Intrinsics.Vector256<T> right) where T : struct;
static member GreaterThanAny : System.Runtime.Intrinsics.Vector256<'T (requires 'T : struct)> * System.Runtime.Intrinsics.Vector256<'T (requires 'T : struct)> -> bool (requires 'T : struct)
Public Function GreaterThanAny(Of T As Structure) (left As Vector256(Of T), right As Vector256(Of T)) As Boolean
Parametry typu
- T
Typ prvků vektoru.
Parametry
- left
- Vector256<T>
Vektor, který se má porovnat s right
.
- right
- Vector256<T>
Vektor, který se má porovnat s left
.
Návraty
true
pokud byly některé prvky větší left
než odpovídající prvek v right
.