Vector128.EqualsAll<T>(Vector128<T>, Vector128<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 égaux.
public:
generic <typename T>
where T : value class static bool EqualsAll(System::Runtime::Intrinsics::Vector128<T> left, System::Runtime::Intrinsics::Vector128<T> right);
public static bool EqualsAll<T> (System.Runtime.Intrinsics.Vector128<T> left, System.Runtime.Intrinsics.Vector128<T> right) where T : struct;
static member EqualsAll : System.Runtime.Intrinsics.Vector128<'T (requires 'T : struct)> * System.Runtime.Intrinsics.Vector128<'T (requires 'T : struct)> -> bool (requires 'T : struct)
Public Function EqualsAll(Of T As Structure) (left As Vector128(Of T), right As Vector128(Of T)) As Boolean
Paramètres de type
- T
Type des éléments dans le vecteur.
Paramètres
- left
- Vector128<T>
Vecteur à comparer avec right
.
- right
- Vector128<T>
Vecteur à comparer avec left
.
Retours
true
si tous les éléments inclus left
étaient égaux à l’élément correspondant dans right
.