Beispiel #1
0
 def __rtruediv__(self, other):
     """Override reflected / operator."""
     from arxpy.bitvector import operation
     return operation.BvUdiv(other, self)
Beispiel #2
0
 def __truediv__(self, other):
     """Override / operator."""
     from arxpy.bitvector import operation
     return operation.BvUdiv(self, other)