std::isless
Aus cppreference.com
<metanoindex/>
<tbody> </tbody>| definiert in Header <cmath>
|
||
bool isless( float x, float y ); |
(seit C++11) | |
bool isless( double x, double y ); |
(seit C++11) | |
bool isless( long double x, long double y ); |
(seit C++11) | |
Bestimmt, ob der Gleitkommazahl
x kleiner ist als die Gleitpunktzahl y, ohne Einstellung Gleitkomma-Exceptions .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.
Parameter
| x | - | Floating-Point-Wert
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 | - | Floating-Point-Wert
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. |
Rückgabewert
true wenn x < y, false andersOriginal:
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.
Notes
Der eingebaute
operator< für Gleitkommazahlen aufwerfen kann FE_INVALID wenn eine oder beide der Argumente NaN. Diese Funktion ist eine "stille" Version 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.
