Exponential function. \param arg function argument \return e raised to \a arg template typename enable ::type exp(T arg) { return functions::exp(arg); }
| 3070 | /// \return e raised to \a arg |
| 3071 | // template<typename T> typename enable<expr,T>::type exp(T arg) { return functions::exp(arg); } |
| 3072 | inline expr exp(half arg) |
| 3073 | { |
| 3074 | return functions::exp(arg); |
| 3075 | } |
| 3076 | inline expr exp(expr arg) |
| 3077 | { |
| 3078 | return functions::exp(arg); |
no outgoing calls
no test coverage detected