MCPcopy Create free account
hub / github.com/arrayfire/arrayfire / isnan

Function isnan

extern/half/include/half.hpp:2748–2748  ·  view source on GitHub ↗

Check for NaN. \param arg number to check \retval true for NaNs \retval false else template typename enable ::type isnan(T arg) { return functions::isnan(arg); }

Source from the content-addressed store, hash-verified

2746 /// \retval false else
2747// template<typename T> typename enable<bool,T>::type isnan(T arg) { return functions::isnan(arg); }
2748 inline bool isnan(half arg) { return functions::isnan(arg); }
2749 inline bool isnan(expr arg) { return functions::isnan(arg); }
2750
2751 /// Check if normal number.

Callers 5

builtin_isnanFunction · 0.70
nexttowardMethod · 0.70
isequalMethod · 0.70
isnotequalMethod · 0.70
isunorderedMethod · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected