Check for NaN. See also:** Documentation for [std::isnan](https://en.cppreference.com/w/cpp/numeric/math/isnan). \param arg number to check \retval true for NaNs \retval false else
| 4357 | /// \retval true for NaNs |
| 4358 | /// \retval false else |
| 4359 | inline HALF_CONSTEXPR bool isnan(half arg) { return (arg.data_&0x7FFF) > 0x7C00; } |
| 4360 | |
| 4361 | /// Check if normal number. |
| 4362 | /// **See also:** Documentation for [std::isnormal](https://en.cppreference.com/w/cpp/numeric/math/isnormal). |
no outgoing calls
no test coverage detected