Ceiling implementation. \param arg value to round \return rounded value
| 2085 | /// \param arg value to round |
| 2086 | /// \return rounded value |
| 2087 | static half ceil(half arg) |
| 2088 | { |
| 2089 | return half(binary, round_half<std::round_toward_infinity>(arg.data_)); |
| 2090 | } |
| 2091 | |
| 2092 | /// Truncation implementation. |
| 2093 | /// \param arg value to round |
no test coverage detected