◐ Shell
clean mode source ↗

std::islessequal – cppreference.com

Aus cppreference.com

<metanoindex/>

<tbody> </tbody>

definiert in Header

<cmath>

bool islessequal( float x, float y );

(seit C++11)

bool islessequal( double x, double y );

(seit C++11)

bool islessequal( long double x, long double y );

(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.
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 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 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) [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.
You can help to correct and verify the translation. Click here for instructions.


(Funktion) [edit]