| 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 ); |
| 37 | } |
| 38 | inline R_xlen_t size() const { return object.size() ; } |
| 39 | |
| 40 | private: |