Vector128.Min<T>(Vector128<T>, Vector128<T>) Méthode

Définition

Calcule le minimum de deux vecteurs par élément.

public:
generic <typename T>
 static System::Runtime::Intrinsics::Vector128<T> Min(System::Runtime::Intrinsics::Vector128<T> left, System::Runtime::Intrinsics::Vector128<T> right);
public:
generic <typename T>
 where T : value class static System::Runtime::Intrinsics::Vector128<T> Min(System::Runtime::Intrinsics::Vector128<T> left, System::Runtime::Intrinsics::Vector128<T> right);
public static System.Runtime.Intrinsics.Vector128<T> Min<T>(System.Runtime.Intrinsics.Vector128<T> left, System.Runtime.Intrinsics.Vector128<T> right);
public static System.Runtime.Intrinsics.Vector128<T> Min<T>(System.Runtime.Intrinsics.Vector128<T> left, System.Runtime.Intrinsics.Vector128<T> right) where T : struct;
static member Min : System.Runtime.Intrinsics.Vector128<'T> * System.Runtime.Intrinsics.Vector128<'T> -> System.Runtime.Intrinsics.Vector128<'T>
static member Min : System.Runtime.Intrinsics.Vector128<'T (requires 'T : struct)> * System.Runtime.Intrinsics.Vector128<'T (requires 'T : struct)> -> System.Runtime.Intrinsics.Vector128<'T (requires 'T : struct)> (requires 'T : struct)
Public Function Min(Of T) (left As Vector128(Of T), right As Vector128(Of T)) As Vector128(Of T)
Public Function Min(Of T As Structure) (left As Vector128(Of T), right As Vector128(Of T)) As Vector128(Of T)

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

Vecteur dont les éléments sont le minimum des éléments correspondants dans left et right.

Exceptions

Le type et (left) n’est rightT pas pris en charge.

Remarques

Pour IFloatingPoint<TSelf>, cette méthode correspond à la fonction IEEE 754:2019 minimum . Cela nécessite que les entrées NaN soient propagées à l’appelant et qu’elles -0.0 soient traitées comme inférieures +0.0à .

S’applique à