std::islessgreater
De cppreference.com
![]() |
This page has been machine-translated from the English version of the wiki using Google Translate.
The translation may contain errors and awkward wording. Hover over text to see the original version. You can help to fix errors and improve the translation. For instructions click here. |
Defined in header <cmath>
|
||
bool islessgreater( float x, float y ); |
(desde C++11) | |
bool islessgreater( double x, double y ); |
(desde C++11) | |
bool islessgreater( long double x, long double y ); |
(desde C++11) | |
Determina si la
x
número de punto flotante es menor o mayor que el y
número de coma flotante, sin establecer excepciones de punto flotante .Original:
Determines if the floating point number
x
is less than or greater 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.
Contenido |
[editar] Parámetros
x | - | flotando valor en puntos
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 | - | flotando valor en puntos
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. |
[editar] Valor de retorno
true si x < y || x > y, false lo contrario
Original:
true if x < y || 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.
[editar] Notas
El built-in operator< y operator> para números de punto flotante puede elevar FE_INVALID si uno o ambos de los argumentos es NaN. Esta función es un "tranquilo" la versión de la x < y || x > y expresión .
Original:
The built-in operator< and 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 the expression x < y || x > y.
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.
[editar] Ver también
(C++11) |
Comprueba si el primero de punto flotante argumento es menor que la segunda Original: checks if the first floating-point argument is less 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. (función) |
(C++11) |
Comprueba si el primero de punto flotante argumento es mayor que la segunda Original: checks if the first floating-point argument is greater 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. (función) |