Single.MinMagnitude(Single, Single) Método
Definição
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
Compara dois valores com a computação que é menor.
public:
static float MinMagnitude(float x, float y) = System::Numerics::INumberBase<float>::MinMagnitude;
public static float MinMagnitude (float x, float y);
static member MinMagnitude : single * single -> single
Public Shared Function MinMagnitude (x As Single, y As Single) As Single
Parâmetros
- x
- Single
O valor a ser comparado com y
.
- y
- Single
O valor a ser comparado com x
.
Retornos
x
se for menor que y
; caso contrário, y
.
Implementações
Comentários
Para <ver cref="T:System.Numerics.IFloatingPointIeee7541> this method matches the IEEE 754:2019
minimumMagnitude-0.0function. This requires NaN inputs to not be propagated back to the caller and for
to be treated as less than
+0.0'.