std::isunordered
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 isunordered( float x, float y ); |
(desde C++11) | |
bool isunordered( double x, double y ); |
(desde C++11) | |
bool isunordered( long double x, long double y ); |
(desde C++11) | |
Determina si los números de punto flotante y
x
y
están ordenados, es decir, uno o ambos están NaN y por lo tanto no pueden compararse entre sí .Original:
Determines if the floating point numbers
x
and y
are unordered, that is, one or both are NaN and thus cannot be meaningfully compared with each other.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] 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 bien
x
o y
es NaN, false lo contrarioOriginal:
true if either
x
or y
is NaN, 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.
[editar] Ver también
(C++11) |
clasifica el valor dado en coma flotante Original: categorizes the given 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. (función) |
(C++11) |
Comprueba si el número dado es NaN Original: checks if the given number is NaN The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (función) |