Performs the operation __floordiv__.
(self: Array, other: Union[int, float, Array], /)
| 519 | return res |
| 520 | |
| 521 | def __floordiv__(self: Array, other: Union[int, float, Array], /) -> Array: |
| 522 | """ |
| 523 | Performs the operation __floordiv__. |
| 524 | """ |
| 525 | other = self._check_allowed_dtypes(other, "real numeric", "__floordiv__") |
| 526 | if other is NotImplemented: |
| 527 | return other |
| 528 | self, other = self._normalize_two_args(self, other) |
| 529 | res = self._array.__floordiv__(other._array) |
| 530 | return self.__class__._new(res) |
| 531 | |
| 532 | def __ge__(self: Array, other: Union[int, float, Array], /) -> Array: |
| 533 | """ |
nothing calls this directly
no test coverage detected