Return (self <= other) element-wise. See Also -------- less_equal
(self, other)
| 2148 | return greater_equal(self, other) |
| 2149 | |
| 2150 | def __le__(self, other): |
| 2151 | """ |
| 2152 | Return (self <= other) element-wise. |
| 2153 | |
| 2154 | See Also |
| 2155 | -------- |
| 2156 | less_equal |
| 2157 | """ |
| 2158 | return less_equal(self, other) |
| 2159 | |
| 2160 | def __gt__(self, other): |
| 2161 | """ |