def __ixor__(self, other): bitwise_xor(self.array, other, self.array) return self
def __rxor__(self, other): return self._rc(bitwise_xor(other, self.array))
def __xor__(self, other): return self._rc(bitwise_xor(self.array, other))