Square root implementation. \param arg function argument \return function value stored in single-preicision
| 1838 | /// \param arg function argument |
| 1839 | /// \return function value stored in single-preicision |
| 1840 | static expr sqrt(float arg) |
| 1841 | { |
| 1842 | return expr(std::sqrt(arg)); |
| 1843 | } |
| 1844 | |
| 1845 | /// Cubic root implementation. |
| 1846 | /// \param arg function argument |
no test coverage detected