Example #1
0
 def __irshift__(self, other):
     right_shift(self.array, other, self.array)
     return self
Example #2
0
 def __rrshift__(self, other):
     return self._rc(right_shift(other, self.array))
Example #3
0
 def __rshift__(self, other):
     return self._rc(right_shift(self.array, other))
Example #4
0
 def __irshift__(self,other):
     right_shift(self.array, other, self.array)
     return self
Example #5
0
 def __rrshift__(self,other):
     return self._rc(right_shift(other, self.array))
Example #6
0
 def __rshift__(self,other):
     return self._rc(right_shift(self.array, other))