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

Method __ne__

numpy/_core/defchararray.py:616–624  ·  view source on GitHub ↗

Return (self != other) element-wise. See Also -------- not_equal

(self, other)

Source from the content-addressed store, hash-verified

614 return equal(self, other)
615
616 def __ne__(self, other):
617 """
618 Return (self != other) element-wise.
619
620 See Also
621 --------
622 not_equal
623 """
624 return not_equal(self, other)
625
626 def __ge__(self, other):
627 """

Callers

nothing calls this directly

Calls 1

not_equalFunction · 0.85

Tested by

no test coverage detected