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

Method __rxor__

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

Source from the content-addressed store, hash-verified

157 return self._rc(bitwise_xor(self.array, other))
158
159 def __rxor__(self, other):
160 return self._rc(bitwise_xor(other, self.array))
161
162 def __ixor__(self, other):
163 bitwise_xor(self.array, other, self.array)

Callers

nothing calls this directly

Calls 2

_rcMethod · 0.95
bitwise_xorFunction · 0.85

Tested by

no test coverage detected