Check if normal number. See also:** Documentation for [std::isnormal](https://en.cppreference.com/w/cpp/numeric/math/isnormal). \param arg number to check \retval true if normal number \retval false if either subnormal, zero, infinity or NaN
| 4390 | /// \retval true if normal number |
| 4391 | /// \retval false if either subnormal, zero, infinity or NaN |
| 4392 | inline HALF_CONSTEXPR bool isnormal(half arg) { return ((arg.data_&0x7C00)!=0) & ((arg.data_&0x7C00)!=0x7C00); } |
| 4393 | |
| 4394 | /// Check sign. |
| 4395 | /// **See also:** Documentation for [std::signbit](https://en.cppreference.com/w/cpp/numeric/math/signbit). |
nothing calls this directly
no outgoing calls
no test coverage detected