(self, other)
| 523 | return LinearViewCursor.compare(self, other) == 0 |
| 524 | |
| 525 | def __ne__(self, other): |
| 526 | if not isinstance(other, self.__class__): |
| 527 | return NotImplemented |
| 528 | return LinearViewCursor.compare(self, other) != 0 |
| 529 | |
| 530 | def __lt__(self, other): |
| 531 | if not isinstance(other, self.__class__): |