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

Définition

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

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

Paramètres de type

T

Type des éléments dans le vecteur.

Paramètres

left
Vector256<T>

Vecteur à comparer avec right.

right
Vector256<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 à