Vector64.GreaterThanAll<T>(Vector64<T>, Vector64<T>) Méthode
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Compare deux vecteurs pour déterminer si tous les éléments sont supérieurs.
public:
generic <typename T>
where T : value class static bool GreaterThanAll(System::Runtime::Intrinsics::Vector64<T> left, System::Runtime::Intrinsics::Vector64<T> right);
public static bool GreaterThanAll<T> (System.Runtime.Intrinsics.Vector64<T> left, System.Runtime.Intrinsics.Vector64<T> right) where T : struct;
static member GreaterThanAll : System.Runtime.Intrinsics.Vector64<'T (requires 'T : struct)> * System.Runtime.Intrinsics.Vector64<'T (requires 'T : struct)> -> bool (requires 'T : struct)
Public Function GreaterThanAll(Of T As Structure) (left As Vector64(Of T), right As Vector64(Of T)) As Boolean
Paramètres de type
- T
Type des éléments dans le vecteur.
Paramètres
- left
- Vector64<T>
Vecteur à comparer avec right
.
- right
- Vector64<T>
Vecteur à comparer avec left
.
Retours
true
si tous les éléments inclus left
étaient supérieurs à l’élément correspondant dans right
.