Vector.None<T>(Vector<T>, 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.
Détermine si aucun élément d’un vecteur n’est égal à une valeur donnée.
public:
generic <typename T>
static bool None(System::Numerics::Vector<T> vector, T value);
public static bool None<T>(System.Numerics.Vector<T> vector, T value);
static member None : System.Numerics.Vector<'T> * 'T -> bool
Public Function None(Of T) (vector As Vector(Of T), value As T) As Boolean
Paramètres de type
- T
Type des éléments dans le vecteur.
Paramètres
- vector
- Vector<T>
Vecteur dont les éléments sont vérifiés.
- value
- T
Valeur à vérifier dans vector
Retours
true si aucun élément n’est vector égal à value; sinon, false.