Nearest integer implementation. \param arg value to round \return rounded value
| 2101 | /// \param arg value to round |
| 2102 | /// \return rounded value |
| 2103 | static half round(half arg) |
| 2104 | { |
| 2105 | return half(binary, round_half_up(arg.data_)); |
| 2106 | } |
| 2107 | |
| 2108 | /// Nearest integer implementation. |
| 2109 | /// \param arg value to round |
no test coverage detected