UInt32.Min(UInt32, UInt32) Metodo

Definizione

Confronta due valori per calcolare che è minore.

public:
 static System::UInt32 Min(System::UInt32 x, System::UInt32 y) = System::Numerics::INumber<System::UInt32>::Min;
public static uint Min (uint x, uint y);
static member Min : uint32 * uint32 -> uint32
Public Shared Function Min (x As UInteger, y As UInteger) As UInteger

Parametri

x
UInt32

Valore da confrontare con y.

y
UInt32

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