Quiet check if unordered. See also:** Documentation for [std::isunordered](https://en.cppreference.com/w/cpp/numeric/math/isunordered). \param x first operand \param y second operand \retval true if unordered (one or two NaN operands) \retval false else
| 4465 | /// \retval true if unordered (one or two NaN operands) |
| 4466 | /// \retval false else |
| 4467 | inline HALF_CONSTEXPR bool isunordered(half x, half y) { return isnan(x) || isnan(y); } |
| 4468 | |
| 4469 | /// \} |
| 4470 | /// \anchor casting |