Performs the operation __gt__.
(self: Array, other: Union[int, float, Array], /)
| 564 | return self._new(res) |
| 565 | |
| 566 | def __gt__(self: Array, other: Union[int, float, Array], /) -> Array: |
| 567 | """ |
| 568 | Performs the operation __gt__. |
| 569 | """ |
| 570 | other = self._check_allowed_dtypes(other, "real numeric", "__gt__") |
| 571 | if other is NotImplemented: |
| 572 | return other |
| 573 | self, other = self._normalize_two_args(self, other) |
| 574 | res = self._array.__gt__(other._array) |
| 575 | return self.__class__._new(res) |
| 576 | |
| 577 | def __int__(self: Array, /) -> int: |
| 578 | """ |
nothing calls this directly
no test coverage detected