IsNaN()

System::IsNaN(const T&) function

Determines if the specified value is Not-A-Number value.

template<typename T> bool System::IsNaN(const T &value)

Template parameters

ParameterDescription
TThe type of the value checked by the function

Arguments

ParameterTypeDescription
valueconst T&The value to check

Return Value

True if value is a NaN value, otherwise - false

See Also