| 32 | typedef typename Rcpp::traits::storage_type<RTYPE>::type STORAGE ; |
| 33 | |
| 34 | Rep( const VEC_TYPE& object_, R_xlen_t times_ ) : |
| 35 | object(object_), times(times_), n(object_.size()){} |
| 36 | |
| 37 | inline STORAGE operator[]( R_xlen_t i ) const { |
| 38 | return object[ i % n ] ; |