MCPcopy Create free account
hub / github.com/numpy/numpy / __ge__

Method __ge__

numpy/array_api/_array_object.py:532–541  ·  view source on GitHub ↗

Performs the operation __ge__.

(self: Array, other: Union[int, float, Array], /)

Source from the content-addressed store, hash-verified

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,

Callers

nothing calls this directly

Calls 3

_check_allowed_dtypesMethod · 0.95
_normalize_two_argsMethod · 0.95
_newMethod · 0.80

Tested by

no test coverage detected