Exponential implementation. \param arg function argument \return function value stored in single-preicision
| 1766 | /// \param arg function argument |
| 1767 | /// \return function value stored in single-preicision |
| 1768 | static expr exp(float arg) |
| 1769 | { |
| 1770 | return expr(std::exp(arg)); |
| 1771 | } |
| 1772 | |
| 1773 | /// Exponential implementation. |
| 1774 | /// \param arg function argument |
no test coverage detected