| 31 | typedef typename Rcpp::traits::storage_type<RTYPE>::type STORAGE ; |
| 32 | |
| 33 | Pow( const T& object_, EXPONENT_TYPE exponent ) : object(object_), op(exponent) {} |
| 34 | |
| 35 | inline double operator[]( R_xlen_t i ) const { |
| 36 | return ::pow( object[i], op ); |
nothing calls this directly
no outgoing calls
no test coverage detected