Ejemplo n.º 1
0
 def __ixor__(self, other):
     bitwise_xor(self.array, other, self.array)
     return self
Ejemplo n.º 2
0
 def __rxor__(self, other):
     return self._rc(bitwise_xor(other, self.array))
Ejemplo n.º 3
0
 def __xor__(self, other):
     return self._rc(bitwise_xor(self.array, other))
Ejemplo n.º 4
0
 def __ixor__(self, other):
     bitwise_xor(self.array, other, self.array)
     return self
Ejemplo n.º 5
0
 def __rxor__(self, other):
     return self._rc(bitwise_xor(other, self.array))
Ejemplo n.º 6
0
 def __xor__(self, other):
     return self._rc(bitwise_xor(self.array, other))