(self, other)
| 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) |
nothing calls this directly
no test coverage detected