NFloat.MinMagnitudeNumber(NFloat, NFloat) Método

Definição

Compara dois valores com a computação que tem a magnitude menor e retorna o outro valor se uma entrada for NaN.

public:
 static System::Runtime::InteropServices::NFloat MinMagnitudeNumber(System::Runtime::InteropServices::NFloat x, System::Runtime::InteropServices::NFloat y) = System::Numerics::INumberBase<System::Runtime::InteropServices::NFloat>::MinMagnitudeNumber;
public static System.Runtime.InteropServices.NFloat MinMagnitudeNumber (System.Runtime.InteropServices.NFloat x, System.Runtime.InteropServices.NFloat y);
static member MinMagnitudeNumber : System.Runtime.InteropServices.NFloat * System.Runtime.InteropServices.NFloat -> System.Runtime.InteropServices.NFloat
Public Shared Function MinMagnitudeNumber (x As NFloat, y As NFloat) As NFloat

Parâmetros

x
NFloat

O valor a ser comparado com y.

y
NFloat

O valor a ser comparado com x.

Retornos

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

Implementações

Comentários

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

Aplica-se a