Power function. \param base first argument \param exp second argument \return \a base raised to \a exp template typename enable ::type pow(T base, U exp) { return functions::pow(base, exp); }
| 2406 | /// \return \a base raised to \a exp |
| 2407 | // template<typename T,typename U> typename enable<expr,T,U>::type pow(T base, U exp) { return functions::pow(base, exp); } |
| 2408 | inline expr pow(half base, half exp) { return functions::pow(base, exp); } |
| 2409 | inline expr pow(half base, expr exp) { return functions::pow(base, exp); } |
| 2410 | inline expr pow(expr base, half exp) { return functions::pow(base, exp); } |
| 2411 | inline expr pow(expr base, expr exp) { return functions::pow(base, exp); } |
no outgoing calls