Esempio n. 1
0
 def __rshift__(self, other):
     other = MIArray.__value_other(self, other)
     r = MIArray(ArrayMath.rightShift(self.array, other))
     return r     
Esempio n. 2
0
 def __rshift__(self, other):
     other = MIArray.__value_other(self, other)
     r = MIArray(ArrayMath.rightShift(self.array, other))
     return r
Esempio n. 3
0
 def __rshift__(self, other):
     if isinstance(other, MIArray):
         other = other.array
     r = MIArray(ArrayMath.rightShift(self.array, other))
     return r