(self, other)
| 538 | return LinearViewCursor.compare(self, other) <= 0 |
| 539 | |
| 540 | def __gt__(self, other): |
| 541 | if not isinstance(other, self.__class__): |
| 542 | return NotImplemented |
| 543 | return LinearViewCursor.compare(self, other) > 0 |
| 544 | |
| 545 | def __ge__(self, other): |
| 546 | if not isinstance(other, self.__class__): |