Return (self < other) element-wise. See Also -------- less
(self, other)
| 2168 | return greater(self, other) |
| 2169 | |
| 2170 | def __lt__(self, other): |
| 2171 | """ |
| 2172 | Return (self < other) element-wise. |
| 2173 | |
| 2174 | See Also |
| 2175 | -------- |
| 2176 | less |
| 2177 | """ |
| 2178 | return less(self, other) |
| 2179 | |
| 2180 | def __add__(self, other): |
| 2181 | """ |