(self, other)
| 205 | return self._rc(less(self.array, other)) |
| 206 | |
| 207 | def __le__(self, other): |
| 208 | return self._rc(less_equal(self.array, other)) |
| 209 | |
| 210 | def __eq__(self, other): |
| 211 | return self._rc(equal(self.array, other)) |
nothing calls this directly
no test coverage detected