def __xor__(self, other): other = MIArray.__value_other(self, other) r = MIArray(ArrayMath.bitXor(self.array, other)) return r
def __xor__(self, other): if isinstance(other, MIArray): other = other.array r = MIArray(ArrayMath.bitXor(self.array, other)) return r