Nearest integer not greater in magnitude than half value. \param arg half to round \return nearest integer not greater in magnitude than \a arg template typename enable ::type trunc(T arg) { return functions::trunc(arg); }
| 2554 | /// \return nearest integer not greater in magnitude than \a arg |
| 2555 | // template<typename T> typename enable<half,T>::type trunc(T arg) { return functions::trunc(arg); } |
| 2556 | inline half trunc(half arg) { return functions::trunc(arg); } |
| 2557 | inline half trunc(expr arg) { return functions::trunc(arg); } |
| 2558 | |
| 2559 | /// Nearest integer. |
no outgoing calls
no test coverage detected