| 38 | typedef SugarIterator iterator ; |
| 39 | |
| 40 | SugarIterator( const T& ref_ ) :ref(ref_), index(0) {} |
| 41 | SugarIterator( const T& ref_, R_xlen_t index_) : ref(ref_), index(index_) {} |
| 42 | SugarIterator( const SugarIterator& other) : ref(other.ref), index(other.index){} |
| 43 |
nothing calls this directly
no outgoing calls
no test coverage detected