Exponential minus one. \param arg function argument \return e raised to \a arg subtracted by 1 template typename enable ::type expm1(T arg) { return functions::expm1(arg); }
| 2335 | /// \return e raised to \a arg subtracted by 1 |
| 2336 | // template<typename T> typename enable<expr,T>::type expm1(T arg) { return functions::expm1(arg); } |
| 2337 | inline expr expm1(half arg) { return functions::expm1(arg); } |
| 2338 | inline expr expm1(expr arg) { return functions::expm1(arg); } |
| 2339 | |
| 2340 | /// Binary exponential. |