| 91 | return index != rhs.index; |
| 92 | } |
| 93 | inline bool operator>(const iterator& rhs) { |
| 94 | return index > rhs.index; |
| 95 | } |
| 96 | inline bool operator<(const iterator& rhs) { |
| 97 | return index < rhs.index; |
| 98 | } |
nothing calls this directly
no outgoing calls
no test coverage detected