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); }
| 2393 | /// \return \a base raised to \a exp |
| 2394 | // template<typename T,typename U> typename enable<expr,T,U>::type pow(T base, U exp) { return functions::pow(base, exp); } |
| 2395 | inline expr pow(half base, half exp) { return functions::pow(base, exp); } |
| 2396 | inline expr pow(half base, expr exp) { return functions::pow(base, exp); } |
| 2397 | inline expr pow(expr base, half exp) { return functions::pow(base, exp); } |
| 2398 | inline expr pow(expr base, expr exp) { return functions::pow(base, exp); } |
no outgoing calls
no test coverage detected