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

Method __ne__

numpy/lib/user_array.py:213–214  ·  view source on GitHub ↗
(self, other)

Source from the content-addressed store, hash-verified

211 return self._rc(equal(self.array, other))
212
213 def __ne__(self, other):
214 return self._rc(not_equal(self.array, other))
215
216 def __gt__(self, other):
217 return self._rc(greater(self.array, other))

Callers

nothing calls this directly

Calls 2

_rcMethod · 0.95
not_equalFunction · 0.90

Tested by

no test coverage detected