std::isless
De cppreference.com
<metanoindex/>
<tbody> </tbody>| Definido no cabeçalho <cmath>
|
||
bool isless( float x, float y ); |
(desde C++11) | |
bool isless( double x, double y ); |
(desde C++11) | |
bool isless( long double x, long double y ); |
(desde C++11) | |
Determina se o
x número de ponto flutuante é menor que o y número de ponto flutuante, sem definir exceções de ponto flutuante.Original:
Determines if the floating point number
x is less than 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.
Parâmetros
| x | - | flutuando valor de ponto
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 | - | flutuando valor de ponto
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. |
Valor de retorno
true se x < y, false contrárioOriginal:
true if x < y, false otherwiseThe 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.
Notas
O
operator< built-in para números de ponto flutuante pode levantar FE_INVALID se um ou ambos os argumentos é NaN. Esta função é uma versão "tranqüila" 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.
