Exemplo n.º 1
0
 def __ilshift__(self, other):
     left_shift(self.array, other, self.array)
     return self
Exemplo n.º 2
0
 def __rlshift__(self, other):
     return self._rc(left_shift(other, self.array))
Exemplo n.º 3
0
 def __lshift__(self, other):
     return self._rc(left_shift(self.array, other))
Exemplo n.º 4
0
 def __lshift__(self,other):
     return self._rc(left_shift(self.array, other))
Exemplo n.º 5
0
 def __ilshift__(self,other):
     left_shift(self.array, other, self.array)
     return self
Exemplo n.º 6
0
 def __rlshift__(self,other):
     return self._rc(left_shift(other, self.array))