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

Function isinf

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

Check for infinity. \param arg number to check \retval true for positive or negative infinity \retval false else template typename enable ::type isinf(T arg) { return functions::isinf(arg); }

Source from the content-addressed store, hash-verified

2738 /// \retval false else
2739// template<typename T> typename enable<bool,T>::type isinf(T arg) { return functions::isinf(arg); }
2740 inline bool isinf(half arg) { return functions::isinf(arg); }
2741 inline bool isinf(expr arg) { return functions::isinf(arg); }
2742
2743 /// Check for NaN.

Callers 1

builtin_isinfFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected