Code
Hub
Workspaces
Following
Digest
Agents
Trending
Connect
Indexed
MCP
copy
Index your code
hub
/
github.com/numpy/numpy
/ __eq__
Method
__eq__
numpy/lib/_user_array_impl.py:237–238 ·
view source on GitHub ↗
(self, other)
Source
from the content-addressed store, hash-verified
235
return
self._rc(less_equal(self.array, other))
236
237
def
__eq__(self, other):
238
return
self._rc(equal(self.array, other))
239
240
def
__ne__(self, other):
241
return
self._rc(not_equal(self.array, other))
Callers
nothing calls this directly
Calls
2
_rc
Method · 0.95
equal
Function · 0.90
Tested by
no test coverage detected