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

Method __ge__

numpy/ma/core.py:4204–4205  ·  view source on GitHub ↗
(self, other)

Source from the content-addressed store, hash-verified

4202 return self._comparison(other, operator.lt)
4203
4204 def __ge__(self, other):
4205 return self._comparison(other, operator.ge)
4206
4207 def __gt__(self, other):
4208 return self._comparison(other, operator.gt)

Callers

nothing calls this directly

Calls 1

_comparisonMethod · 0.95

Tested by

no test coverage detected