std::isgreaterequal
Da cppreference.com.
![]() |
Questa pagina è stata tradotta in modo automatico dalla versione in ineglese della wiki usando Google Translate.
La traduzione potrebbe contenere errori e termini strani. Muovi il puntatore sopra al testo per vedere la versione originale. Puoi aiutarci a correggere gli gli errori. Per ulteriori istruzioni clicca qui. |
Elemento definito nell'header <cmath>
|
||
bool isgreaterequal( float x, float y ); |
(dal C++11) | |
bool isgreaterequal( double x, double y ); |
(dal C++11) | |
bool isgreaterequal( long double x, long double y ); |
(dal C++11) | |
Determina se il galleggiante
x
numero del punto è maggiore o uguale alla virgola mobile y
numero, senza stabilire eccezioni a virgola mobile.Original:
Determines if the floating point number
x
is greater than or equal to the floating-point number y
, without setting floating-point exceptions.The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
Indice |
[modifica] Parametri
x | - | valore in virgola mobile
Original: floating point value The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
y | - | valore in virgola mobile
Original: floating point value The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
[modifica] Valore di ritorno
true se x >= y, false altrimenti
Original:
true if x >= y, false otherwise
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
[modifica] Note
Il built-in operator>= per numeri in virgola mobile possono sollevare FE_INVALID se uno o entrambi gli argomenti è NaN. Questa funzione è una versione "tranquilla" di operator>=.
Original:
The built-in operator>= for floating-point numbers may raise FE_INVALID if one or both of the arguments is NaN. This function is a "quiet" version of operator>=.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
[modifica] Vedi anche
oggetto funzione attuazione x >= y Original: function object implementing x >= y The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (classe template) | |
(C++11) |
controlla se il primo a virgola mobile argomento è minore o uguale al secondo Original: checks if the first floating-point argument is less or equal than the second The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (funzione) |