Vector64.GreaterThanAll<T>(Vector64<T>, Vector64<T>) Método

Definição

Compara dois vetores para determinar se todos os elementos são maiores.

public:
generic <typename T>
 static bool GreaterThanAll(System::Runtime::Intrinsics::Vector64<T> left, System::Runtime::Intrinsics::Vector64<T> right);
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);
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> * System.Runtime.Intrinsics.Vector64<'T> -> bool
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) (left As Vector64(Of T), right As Vector64(Of T)) As Boolean
Public Function GreaterThanAll(Of T As Structure) (left As Vector64(Of T), right As Vector64(Of T)) As Boolean

Parâmetros de Tipo Genérico

T

O tipo dos elementos no vetor.

Parâmetros

left
Vector64<T>

O vetor para comparar com right.

right
Vector64<T>

O vetor para comparar com left.

Devoluções

true se todos os elementos em left forem maiores do que o elemento correspondente em right.

Exceções

O tipo de left e right (T) não é suportado.

Aplica-se a