Binary exponential. \param arg function argument \return 2 raised to \a arg template typename enable ::type exp2(T arg) { return functions::exp2(arg); }
| 2342 | /// \return 2 raised to \a arg |
| 2343 | // template<typename T> typename enable<expr,T>::type exp2(T arg) { return functions::exp2(arg); } |
| 2344 | inline expr exp2(half arg) { return functions::exp2(arg); } |
| 2345 | inline expr exp2(expr arg) { return functions::exp2(arg); } |
| 2346 | |
| 2347 | /// Natural logorithm. |