Vector64.GreaterThan<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 le plus grand par élément.
public:
generic <typename T>
where T : value class static System::Runtime::Intrinsics::Vector64<T> GreaterThan(System::Runtime::Intrinsics::Vector64<T> left, System::Runtime::Intrinsics::Vector64<T> right);
public:
generic <typename T>
static System::Runtime::Intrinsics::Vector64<T> GreaterThan(System::Runtime::Intrinsics::Vector64<T> left, System::Runtime::Intrinsics::Vector64<T> right);
public static System.Runtime.Intrinsics.Vector64<T> GreaterThan<T> (System.Runtime.Intrinsics.Vector64<T> left, System.Runtime.Intrinsics.Vector64<T> right) where T : struct;
public static System.Runtime.Intrinsics.Vector64<T> GreaterThan<T> (System.Runtime.Intrinsics.Vector64<T> left, System.Runtime.Intrinsics.Vector64<T> right);
static member GreaterThan : System.Runtime.Intrinsics.Vector64<'T (requires 'T : struct)> * System.Runtime.Intrinsics.Vector64<'T (requires 'T : struct)> -> System.Runtime.Intrinsics.Vector64<'T (requires 'T : struct)> (requires 'T : struct)
static member GreaterThan : System.Runtime.Intrinsics.Vector64<'T> * System.Runtime.Intrinsics.Vector64<'T> -> System.Runtime.Intrinsics.Vector64<'T>
Public Function GreaterThan(Of T As Structure) (left As Vector64(Of T), right As Vector64(Of T)) As Vector64(Of T)
Public Function GreaterThan(Of T) (left As Vector64(Of T), right As Vector64(Of T)) As Vector64(Of T)
Paramètres de type
- T
Type des éléments dans le vecteur.
Paramètres
- left
- Vector64<T>
Vecteur à comparer avec left
.
- right
- Vector64<T>
Vecteur à comparer avec right
.
Retours
Vecteur dont les éléments sont tous bits-set ou zéro, selon si les éléments correspondants dans left
et right
étaient plus grands.
Exceptions
Le type de left
et right
(T
) n’est pas pris en charge.