| 71 | } |
| 72 | |
| 73 | bool operator>(const StridedIterator& other) const { |
| 74 | return ptr_ > other.ptr_; |
| 75 | } |
| 76 | |
| 77 | bool operator<=(const StridedIterator& other) const { |
| 78 | return ptr_ <= other.ptr_; |
nothing calls this directly
no outgoing calls
no test coverage detected