MCPcopy Create free account
hub / github.com/ARM-software/ComputeLibrary / isnan

Function isnan

include/half/half.hpp:2735–2735  ·  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

2733 /// \retval false else
2734// template<typename T> typename enable<bool,T>::type isnan(T arg) { return functions::isnan(arg); }
2735 inline bool isnan(half arg) { return functions::isnan(arg); }
2736 inline bool isnan(expr arg) { return functions::isnan(arg); }
2737
2738 /// Check if normal number.

Callers 5

builtin_isnanFunction · 0.85
nexttowardMethod · 0.85
isequalMethod · 0.85
isnotequalMethod · 0.85
isunorderedMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected