Return (self <= other) element-wise. See Also -------- less_equal
(self, other)
| 634 | return greater_equal(self, other) |
| 635 | |
| 636 | def __le__(self, other): |
| 637 | """ |
| 638 | Return (self <= other) element-wise. |
| 639 | |
| 640 | See Also |
| 641 | -------- |
| 642 | less_equal |
| 643 | """ |
| 644 | return less_equal(self, other) |
| 645 | |
| 646 | def __gt__(self, other): |
| 647 | """ |