Performs the operation __ge__.
(self: Array, other: Union[int, float, Array], /)
| 530 | return self.__class__._new(res) |
| 531 | |
| 532 | def __ge__(self: Array, other: Union[int, float, Array], /) -> Array: |
| 533 | """ |
| 534 | Performs the operation __ge__. |
| 535 | """ |
| 536 | other = self._check_allowed_dtypes(other, "real numeric", "__ge__") |
| 537 | if other is NotImplemented: |
| 538 | return other |
| 539 | self, other = self._normalize_two_args(self, other) |
| 540 | res = self._array.__ge__(other._array) |
| 541 | return self.__class__._new(res) |
| 542 | |
| 543 | def __getitem__( |
| 544 | self: Array, |
nothing calls this directly
no test coverage detected