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

Method __ne__

numpy/core/defchararray.py:2130–2138  ·  view source on GitHub ↗

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

(self, other)

Source from the content-addressed store, hash-verified

2128 return equal(self, other)
2129
2130 def __ne__(self, other):
2131 """
2132 Return (self != other) element-wise.
2133
2134 See Also
2135 --------
2136 not_equal
2137 """
2138 return not_equal(self, other)
2139
2140 def __ge__(self, other):
2141 """

Callers

nothing calls this directly

Calls 1

not_equalFunction · 0.70

Tested by

no test coverage detected