(self, other)
| 528 | return LinearViewCursor.compare(self, other) != 0 |
| 529 | |
| 530 | def __lt__(self, other): |
| 531 | if not isinstance(other, self.__class__): |
| 532 | return NotImplemented |
| 533 | return LinearViewCursor.compare(self, other) < 0 |
| 534 | |
| 535 | def __le__(self, other): |
| 536 | if not isinstance(other, self.__class__): |