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

Method __gt__

numpy/lib/_user_array_impl.py:243–244  ·  view source on GitHub ↗
(self, other)

Source from the content-addressed store, hash-verified

241 return self._rc(not_equal(self.array, other))
242
243 def __gt__(self, other):
244 return self._rc(greater(self.array, other))
245
246 def __ge__(self, other):
247 return self._rc(greater_equal(self.array, other))

Callers

nothing calls this directly

Calls 2

_rcMethod · 0.95
greaterFunction · 0.90

Tested by

no test coverage detected