std::isunordered
De cppreference.com
<metanoindex/>
<tbody> </tbody>| Definido no cabeçalho <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 se os números de ponto flutuante e
x y são desordenados, ou seja, um ou ambos são NaN e, portanto, não pode ser de forma significativa em comparação com os outros.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.
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 qualquer x ou y é NaN, false contrárioOriginal:
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.
