Nearest integer. \param arg half to round \return nearest integer, rounded away from zero in half-way cases template typename enable ::type round(T arg) { return functions::round(arg); }
| 3523 | /// \return nearest integer, rounded away from zero in half-way cases |
| 3524 | // template<typename T> typename enable<half,T>::type round(T arg) { return functions::round(arg); } |
| 3525 | inline half round(half arg) |
| 3526 | { |
| 3527 | return functions::round(arg); |
| 3528 | } |
| 3529 | inline half round(expr arg) |
| 3530 | { |
| 3531 | return functions::round(arg); |
no outgoing calls
no test coverage detected