std::isgreaterequal
Aus 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. |
definiert in Header <cmath> | ||
bool isgreaterequal(float x, float y ); | (seit C++11) | |
bool isgreaterequal(double x, double y ); | (seit C++11) | |
bool isgreaterequal(longdouble x, longdouble y ); | (seit C++11) | |
Bestimmt, ob der Gleitkommazahl
x
ist größer als oder gleich dem Gleitkommazahl y
, ohne Einstellung Gleitkomma-Exceptions .Original:
Determines if the floating point number
x
is greater 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.
You can help to correct and verify the translation. Click here for instructions.
Inhaltsverzeichnis |
[Bearbeiten]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. |
[Bearbeiten]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.
You can help to correct and verify the translation. Click here for instructions.
[Bearbeiten]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.
[Bearbeiten]Siehe auch
Funktions-Objekt Umsetzung x >= y Original: function object implementing x >= y The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (Klassen-Template) | |
(C++11) | prüft, ob die erste Gleitkomma-Argument kleiner oder gleich als die zweite Original: checks if the first floating-point argument is less or equal 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. (Funktion) |