| 569 | } |
| 570 | |
| 571 | bool operator==(const MergedRunsIterator& other) const { |
| 572 | return logical_pos_ == other.logical_position(); |
| 573 | } |
| 574 | |
| 575 | bool operator!=(const MergedRunsIterator& other) const { return !(*this == other); } |
| 576 |
nothing calls this directly
no test coverage detected