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