| 31 | } |
| 32 | |
| 33 | friend bool operator!=(const iterator& a, const iterator& b) { |
| 34 | return &a.vector != &b.vector || a.index != b.index; |
| 35 | } |
| 36 | |
| 37 | friend bool operator==(const iterator& a, const iterator& b) { |
| 38 | return &a.vector == &b.vector && a.index == b.index; |
nothing calls this directly
no outgoing calls
no test coverage detected