Cubic root. \param arg function argument \return cubic root of \a arg template typename enable ::type cbrt(T arg) { return functions::cbrt(arg); }
| 2375 | /// \return cubic root of \a arg |
| 2376 | // template<typename T> typename enable<expr,T>::type cbrt(T arg) { return functions::cbrt(arg); } |
| 2377 | inline expr cbrt(half arg) { return functions::cbrt(arg); } |
| 2378 | inline expr cbrt(expr arg) { return functions::cbrt(arg); } |
| 2379 | |
| 2380 | /// Hypotenuse function. |