| 32 | typedef typename Rcpp::traits::storage_type<RTYPE>::type STORAGE ; |
| 33 | |
| 34 | Nona( const SUGAR_TYPE& expr) : data(expr.get_ref()){} |
| 35 | |
| 36 | inline R_xlen_t size() const { return data.size() ; } |
| 37 | inline STORAGE operator[](R_xlen_t i) const { return data[i] ; } |
nothing calls this directly
no outgoing calls
no test coverage detected