Binary exponential. \param arg function argument \return 2 raised to \a arg template typename enable ::type exp2(T arg) { return functions::exp2(arg); }
| 2329 | /// \return 2 raised to \a arg |
| 2330 | // template<typename T> typename enable<expr,T>::type exp2(T arg) { return functions::exp2(arg); } |
| 2331 | inline expr exp2(half arg) { return functions::exp2(arg); } |
| 2332 | inline expr exp2(expr arg) { return functions::exp2(arg); } |
| 2333 | |
| 2334 | /// Natural logorithm. |