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); }
| 2322 | /// \return e raised to \a arg subtracted by 1 |
| 2323 | // template<typename T> typename enable<expr,T>::type expm1(T arg) { return functions::expm1(arg); } |
| 2324 | inline expr expm1(half arg) { return functions::expm1(arg); } |
| 2325 | inline expr expm1(expr arg) { return functions::expm1(arg); } |
| 2326 | |
| 2327 | /// Binary exponential. |