| 161 | typedef const_iterator iterator; |
| 162 | |
| 163 | iterator begin() { return iterator(rep_.start(), rep_.limit()); } |
| 164 | iterator end() { return iterator(rep_.limit(), rep_.limit()); } |
| 165 | const_iterator begin() const { |
| 166 | return const_iterator(rep_.start(), rep_.limit()); |
no test coverage detected