Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/numpy/numpy
/ __gt__
Method
__gt__
numpy/lib/user_array.py:216–217 ·
view source on GitHub ↗
(self, other)
Source
from the content-addressed store, hash-verified
214
return
self._rc(not_equal(self.array, other))
215
216
def
__gt__(self, other):
217
return
self._rc(greater(self.array, other))
218
219
def
__ge__(self, other):
220
return
self._rc(greater_equal(self.array, other))
Callers
nothing calls this directly
Calls
2
_rc
Method · 0.95
greater
Function · 0.90
Tested by
no test coverage detected