UInt16.Min(UInt16, UInt16) Metodo

Definizione

Confronta due valori per calcolare che è minore.

public:
 static System::UInt16 Min(System::UInt16 x, System::UInt16 y) = System::Numerics::INumber<System::UInt16>::Min;
public static ushort Min (ushort x, ushort y);
static member Min : uint16 * uint16 -> uint16
Public Shared Function Min (x As UShort, y As UShort) As UShort

Parametri

x
UInt16

Valore da confrontare con y.

y
UInt16

Valore da confrontare con x.

Restituisce

x se è minore di y; in caso contrario, y.

Implementazioni

Commenti

Per IFloatingPoint<TSelf> questo metodo corrisponde alla funzione IEEE 754:2019 minimum . Ciò richiede che gli input NaN vengano propagati nuovamente al chiamante e per -0.0 essere considerati come minori di +0.0.

Si applica a