Vector512.GreaterThanAll<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 plus grands.
public:
generic <typename T>
static bool GreaterThanAll(System::Runtime::Intrinsics::Vector512<T> left, System::Runtime::Intrinsics::Vector512<T> right);
public static bool GreaterThanAll<T> (System.Runtime.Intrinsics.Vector512<T> left, System.Runtime.Intrinsics.Vector512<T> right);
static member GreaterThanAll : System.Runtime.Intrinsics.Vector512<'T> * System.Runtime.Intrinsics.Vector512<'T> -> bool
Public Function GreaterThanAll(Of T) (left As Vector512(Of T), right As Vector512(Of T)) As Boolean
Paramètres de type
- T
Type des éléments dans le vecteur.
Paramètres
- left
- Vector512<T>
Vecteur à comparer avec right
.
- right
- Vector512<T>
Vecteur à comparer avec left
.
Retours
true
si tous les éléments dans left
étaient supérieurs à l’élément correspondant dans right
.
Exceptions
Le type de left
et right
(T
) n’est pas pris en charge.