Square root implementation. \param arg function argument \return function value stored in single-preicision
| 1428 | /// \param arg function argument |
| 1429 | /// \return function value stored in single-preicision |
| 1430 | static expr sqrt(float arg) { return expr(std::sqrt(arg)); } |
| 1431 | |
| 1432 | /// Cubic root implementation. |
| 1433 | /// \param arg function argument |