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

Method __ixor__

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

Source from the content-addressed store, hash-verified

160 return self._rc(bitwise_xor(other, self.array))
161
162 def __ixor__(self, other):
163 bitwise_xor(self.array, other, self.array)
164 return self
165
166 def __or__(self, other):
167 return self._rc(bitwise_or(self.array, other))

Callers

nothing calls this directly

Calls 1

bitwise_xorFunction · 0.85

Tested by

no test coverage detected