BigInteger.MinMagnitude(BigInteger, BigInteger) Metodo

Definizione

Confronta due valori con il calcolo minore.

public:
 static System::Numerics::BigInteger MinMagnitude(System::Numerics::BigInteger x, System::Numerics::BigInteger y) = System::Numerics::INumberBase<System::Numerics::BigInteger>::MinMagnitude;
public static System.Numerics.BigInteger MinMagnitude (System.Numerics.BigInteger x, System.Numerics.BigInteger y);
static member MinMagnitude : System.Numerics.BigInteger * System.Numerics.BigInteger -> System.Numerics.BigInteger
Public Shared Function MinMagnitude (x As BigInteger, y As BigInteger) As BigInteger

Parametri

x
BigInteger

Valore da confrontare con y.

y
BigInteger

Valore da confrontare con x.

Restituisce

x se è minore di y; in caso contrario, y.

Implementazioni

Commenti

Per IFloatingPointIeee754<TSelf> questo metodo corrisponde alla funzione IEEE 754:2019 minimumMagnitude . Ciò richiede che gli input NaN vengano propagati di nuovo al chiamante e per -0.0 essere considerati come minori di +0.0.

Si applica a