Absolute value. See also:** Documentation for [std::abs](https://en.cppreference.com/w/cpp/numeric/math/fabs). \param arg operand \return absolute value of \a arg
| 2732 | /// \param arg operand |
| 2733 | /// \return absolute value of \a arg |
| 2734 | inline HALF_CONSTEXPR half abs(half arg) { return fabs(arg); } |
| 2735 | |
| 2736 | /// Remainder of division. |
| 2737 | /// **See also:** Documentation for [std::fmod](https://en.cppreference.com/w/cpp/numeric/math/fmod). |
no test coverage detected