(self, other)
| 232 | return self._rc(less(self.array, other)) |
| 233 | |
| 234 | def __le__(self, other): |
| 235 | return self._rc(less_equal(self.array, other)) |
| 236 | |
| 237 | def __eq__(self, other): |
| 238 | return self._rc(equal(self.array, other)) |
nothing calls this directly
no test coverage detected