| 36 | typedef std::random_access_iterator_tag iterator_category ; |
| 37 | |
| 38 | SEXP_Iterator( ): ptr(){} ; |
| 39 | SEXP_Iterator( const SEXP_Iterator& other) : ptr(other.ptr){} ; |
| 40 | SEXP_Iterator( const VECTOR& vec ) : ptr( RCPP_VECTOR_PTR(vec) ){} ; |
| 41 |
nothing calls this directly
no outgoing calls
no test coverage detected