std::islessequal – cppreference.com
Aus cppreference.com
<metanoindex/>
<tbody> </tbody>
| definiert in Header <cmath> |
||
|
|
(seit C++11) | |
|
|
(seit C++11) | |
|
|
(seit C++11) | |
Bestimmt, ob der Gleitkommazahl x kleiner oder gleich der Gleitkommazahl y, ohne Einstellung Gleitkomma-Exceptions .
Original:
Determines if the floating point number x is less than or equal to 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.
Parameter
| x | - | Floating-Point-Wert Original: floating point value The text has been machine-translated via Google Translate. |
| y | - | Floating-Point-Wert Original: floating point value The text has been machine-translated via Google Translate. |
Rückgabewert
true wenn x <= y, false anders
Original:
true if 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.
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.
Siehe auch
Funktions-Objekt Umsetzung Original: function object implementing The text has been machine-translated via Google Translate. (Klassen-Template) [edit] | |
prüft, ob die erste Gleitkomma-Argument größer oder gleich als die zweite Original: checks if the first floating-point argument is greater or equal than the second The text has been machine-translated via Google Translate. (Funktion) [edit] | |