std::isfinite

From cppreference.com
Jump to: navigation, search
Defined in header <cmath>
int isfinite( float arg );
(since C++11)
int isfinite( double arg );
(since C++11)
int isfinite( long double arg );
(since C++11)

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

categorizes the given floating point value
(function) [edit]
(C++11)
checks if the given number is infinite
(function) [edit]
(C++11)
checks if the given number is NaN
(function) [edit]
(C++11)
checks if the given number is normal
(function) [edit]

Personal tools
Namespaces
Variants
Actions
Navigation
Toolbox