Square root implementation. \param arg function argument \return function value stored in single-preicision
| 1441 | /// \param arg function argument |
| 1442 | /// \return function value stored in single-preicision |
| 1443 | static expr sqrt(float arg) { return expr(std::sqrt(arg)); } |
| 1444 | |
| 1445 | /// Cubic root implementation. |
| 1446 | /// \param arg function argument |