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