std::isnan

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

Determines if the given floating point number arg is not-a-number (NaN).

[edit] Parameters

arg - floating point value

[edit] Return value

nonzero value if arg is NaN, 0 otherwise

[edit] See also

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

Personal tools
Namespaces
Variants
Actions
Navigation
Toolbox