UInt32.Min(UInt32, UInt32) Método

Definição

Compara dois valores com a computação que é menor.

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

Parâmetros

x
UInt32

O valor a ser comparado com y.

y
UInt32

O valor a ser comparado com x.

Retornos

x se for menor que y; caso contrário, y.

Implementações

Comentários

Para IFloatingPoint<TSelf> esse método, corresponde à função IEEE 754:2019 minimum . Isso requer que as entradas NaN sejam propagadas de volta para o chamador e que -0.0 sejam tratadas como menores que +0.0.

Aplica-se a