MCPcopy Index your code
hub / github.com/numpy/numpy / __lt__

Method __lt__

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

Source from the content-addressed store, hash-verified

4295 return self._comparison(other, operator.le)
4296
4297 def __lt__(self, other):
4298 return self._comparison(other, operator.lt)
4299
4300 def __ge__(self, other):
4301 return self._comparison(other, operator.ge)

Callers

nothing calls this directly

Calls 1

_comparisonMethod · 0.95

Tested by

no test coverage detected