Square root. \param arg function argument \return square root of \a arg template typename enable ::type sqrt(T arg) { return functions::sqrt(arg); }
| 2368 | /// \return square root of \a arg |
| 2369 | // template<typename T> typename enable<expr,T>::type sqrt(T arg) { return functions::sqrt(arg); } |
| 2370 | inline expr sqrt(half arg) { return functions::sqrt(arg); } |
| 2371 | inline expr sqrt(expr arg) { return functions::sqrt(arg); } |
| 2372 | |
| 2373 | /// Cubic root. |
no outgoing calls
no test coverage detected