| 56 | |
| 57 | private: |
| 58 | bool equal(const iterator_over& rhs) const noexcept { |
| 59 | return &histogram_ == &rhs.histogram_ && idx_ == rhs.idx_; |
| 60 | } |
| 61 | |
| 62 | void increment() noexcept { ++idx_; } |
| 63 | void decrement() noexcept { --idx_; } |
nothing calls this directly
no outgoing calls
no test coverage detected