| 33 | typedef typename std::iterator_traits<Iter>::reference reference; |
| 34 | |
| 35 | IterationRange(iterator first, iterator last) : first_(first), last_(last) { } |
| 36 | |
| 37 | iterator begin() const { return first_; } |
| 38 | iterator end() const { return last_; } |
nothing calls this directly
no outgoing calls
no test coverage detected