Cubic root. \param arg function argument \return cubic root of \a arg template typename enable ::type cbrt(T arg) { return functions::cbrt(arg); }
| 2388 | /// \return cubic root of \a arg |
| 2389 | // template<typename T> typename enable<expr,T>::type cbrt(T arg) { return functions::cbrt(arg); } |
| 2390 | inline expr cbrt(half arg) { return functions::cbrt(arg); } |
| 2391 | inline expr cbrt(expr arg) { return functions::cbrt(arg); } |
| 2392 | |
| 2393 | /// Hypotenuse function. |