UInt16.Min(UInt16, UInt16) Método

Definição

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

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

Parâmetros

x
UInt16

O valor a ser comparado com y.

y
UInt16

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