UInt128.Min(UInt128, UInt128) 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 valeurs au calcul, ce qui est inférieur.
public:
static UInt128 Min(UInt128 x, UInt128 y) = System::Numerics::INumber<UInt128>::Min;
public static UInt128 Min (UInt128 x, UInt128 y);
static member Min : UInt128 * UInt128 -> UInt128
Public Shared Function Min (x As UInt128, y As UInt128) As UInt128
Paramètres
- x
- UInt128
Valeur à comparer avec y
.
- y
- UInt128
Valeur à comparer avec x
.
Retours
x
s’il est inférieur y
à ; sinon, y
.
Implémente
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 -0.0
qu’elles soient traitées comme inférieures +0.0
à .