| 32 | typedef typename Rcpp::traits::storage_type< r_type::value >::type stored_type ; |
| 33 | |
| 34 | LazyVector( const VECTOR& vec_ ) : vec(vec_), n(vec_.size()), data(n), known(n,false){} |
| 35 | |
| 36 | inline stored_type operator[]( R_xlen_t i) const { |
| 37 | stored_type res ; |