__ixor__# rlemasklib.RLEMask.__ixor__(other)[source]# Compute the symmetric difference with another RLEMasks in place. Parameters: other (RLEMask) – the other RLEMask Returns: Self Return type: RLEMask Examples >>> rle1 = RLEMask(np.eye(3)) >>> rle2 = RLEMask(np.eye(3)[::-1]) >>> rle1 ^= rle2 >>> np.array(rle1) array([[1, 0, 1], [0, 1, 0], [1, 0, 1]], dtype=uint8)