| 67 | } |
| 68 | |
| 69 | bool operator<(const StridedIterator& other) const { |
| 70 | return ptr_ < other.ptr_; |
| 71 | } |
| 72 | |
| 73 | bool operator>(const StridedIterator& other) const { |
| 74 | return ptr_ > other.ptr_; |
nothing calls this directly
no outgoing calls
no test coverage detected