Defined in header <cmath> | ||
---|---|---|
bool isgreaterequal( float x, float y ); | (1) | (since C++11) |
bool isgreaterequal( double x, double y ); | (2) | (since C++11) |
bool isgreaterequal( long double x, long double y ); | (3) | (since C++11) |
bool isgreaterequal( Arithmetic x, Arithmetic y ); | (4) | (since C++11) |
x
is greater than or equal to the floating-point number y
, without setting floating-point exceptions.double
.x | - | floating point value |
y | - | floating point value |
true
if x >= y
, false
otherwise.
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>=
.
function object implementing x >= y (class template) |
|
(C++11) | checks if the first floating-point argument is less or equal than the second (function) |
© cppreference.com
Licensed under the Creative Commons Attribution-ShareAlike Unported License v3.0.
http://en.cppreference.com/w/cpp/numeric/math/isgreaterequal