Beispiel #1
0
 def __rrshift__(self, other):
     """Override reflected >> operator."""
     from arxpy.bitvector import operation
     return operation.BvLshr(other, self)
Beispiel #2
0
 def __rshift__(self, other):
     """Overriding for >> operator."""
     from arxpy.bitvector import operation
     return operation.BvLshr(self, other)