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); }
| 2574 | /// \return nearest integer, rounded away from zero in half-way cases |
| 2575 | // template<typename T> typename enable<half,T>::type round(T arg) { return functions::round(arg); } |
| 2576 | inline half round(half arg) { return functions::round(arg); } |
| 2577 | inline half round(expr arg) { return functions::round(arg); } |
| 2578 | |
| 2579 | /// Nearest integer. |
no outgoing calls
no test coverage detected