(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) |
| 164 | return self |
| 165 | |
| 166 | def __or__(self, other): |
| 167 | return self._rc(bitwise_or(self.array, other)) |
nothing calls this directly
no test coverage detected