Ejemplo n.º 1
0
 def __le__(self, other):
     return bitsCmp(self, other, AllOps.LE)
Ejemplo n.º 2
0
 def __ne__(self, other):
     return bitsCmp(self, other, AllOps.NE)
Ejemplo n.º 3
0
 def __ge__(self, other):
     return bitsCmp(self, other, AllOps.GE)
Ejemplo n.º 4
0
 def _eq(self, other):
     return bitsCmp(self, other, AllOps.EQ, eq)
Ejemplo n.º 5
0
 def __le__(self, other):
     return bitsCmp(self, other, AllOps.LE, BIT.from_py(1))
Ejemplo n.º 6
0
 def __gt__(self, other):
     return bitsCmp(self, other, AllOps.GT, BIT.from_py(0))
Ejemplo n.º 7
0
 def __ne__(self, other):
     return bitsCmp(self, other, AllOps.NE, BIT.from_py(0))
Ejemplo n.º 8
0
 def _eq(self, other):
     return bitsCmp(self, other, AllOps.EQ, BIT.from_py(1), eq)