Esempio n. 1
0
 def __ior__(self, other):
     bitwise_or(self.array, other, self.array)
     return self
Esempio n. 2
0
 def __ror__(self, other):
     return self._rc(bitwise_or(other, self.array))
Esempio n. 3
0
 def __or__(self, other):
     return self._rc(bitwise_or(self.array, other))
Esempio n. 4
0
 def __ior__(self, other):
     bitwise_or(self.array, other, self.array)
     return self
Esempio n. 5
0
 def __ror__(self, other):
     return self._rc(bitwise_or(other, self.array))
Esempio n. 6
0
 def __or__(self, other):
     return self._rc(bitwise_or(self.array, other))