(self, other)
| 533 | return LinearViewCursor.compare(self, other) < 0 |
| 534 | |
| 535 | def __le__(self, other): |
| 536 | if not isinstance(other, self.__class__): |
| 537 | return NotImplemented |
| 538 | return LinearViewCursor.compare(self, other) <= 0 |
| 539 | |
| 540 | def __gt__(self, other): |
| 541 | if not isinstance(other, self.__class__): |