std::isfinite

From Cppreference

Jump to: navigation, search
Defined in header <cmath>

int isfinite( float arg );
(C++11 feature)
int isfinite( double arg );
(C++11 feature)
int isfinite( long double arg );
(C++11 feature)

Determines if the given floating point number arg has finite value i.e. it is normal, subnormal or zero, but not infinite or NAN.

[edit] Parameters

arg - floating point value

[edit] Return value

nonzero value if arg has finite value, 0 otherwise

[edit] See also

fpclassify (C++11)
categorizes the given floating point value
(function)
isinf (C++11)
checks if the given number is infinite
(function)
isnan (C++11)
checks if the given number is NaN
(function)
isnormal (C++11)
checks if the given number is normal
(function)