isgreaterequal
From cppreference.com
Defined in header <math.h>
|
||
#define isgreaterequal(x, y) /* implementation defined */ |
(since C99) | |
Determines if the floating point number x
is greater than or equal to the floating-point number y
, without setting floating-point exceptions.
Parameters
x | - | floating point value |
y | - | floating point value |
Return value
Nonzero integral value if x >= y, 0 otherwise.
Notes
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>=.