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