Return (self < other) element-wise. See Also -------- less
(self, other)
| 654 | return greater(self, other) |
| 655 | |
| 656 | def __lt__(self, other): |
| 657 | """ |
| 658 | Return (self < other) element-wise. |
| 659 | |
| 660 | See Also |
| 661 | -------- |
| 662 | less |
| 663 | """ |
| 664 | return less(self, other) |
| 665 | |
| 666 | def __add__(self, other): |
| 667 | """ |