UInt128.Min(UInt128, UInt128) Método

Definição

Compara dois valores para calcular qual é menor.

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

Parâmetros

x
UInt128

O valor a comparar com y.

y
UInt128

O valor a comparar com x.

Devoluções

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

Implementações

Observações

Para IFloatingPoint<TSelf> este método corresponde à função IEEE 754:2019 minimum . Isto exige que as entradas NaN sejam propagadas de volta para o chamador e que -0.0 sejam tratadas como inferiores a +0.0.

Aplica-se a