| 29 | void increment() noexcept { ++idx_; } |
| 30 | void decrement() noexcept { --idx_; } |
| 31 | void advance(int n) noexcept { idx_ += n; } |
| 32 | int distance_to(const iterator_over& other) const noexcept { |
| 33 | return other.idx_ - idx_; |
| 34 | } |
nothing calls this directly
no outgoing calls
no test coverage detected