Nearest integer. See also:** Documentation for [std::round](https://en.cppreference.com/w/cpp/numeric/math/round). \param arg half to round \return nearest integer, rounded away from zero in half-way cases \exception FE_INVALID for signaling NaN \exception FE_INEXACT if value had to be rounded
| 4093 | /// \exception FE_INVALID for signaling NaN |
| 4094 | /// \exception FE_INEXACT if value had to be rounded |
| 4095 | inline half round(half arg) { return half(detail::binary, detail::integral<std::round_to_nearest,false,true>(arg.data_)); } |
| 4096 | |
| 4097 | /// Nearest integer. |
| 4098 | /// **See also:** Documentation for [std::lround](https://en.cppreference.com/w/cpp/numeric/math/round). |
no test coverage detected