Esempio n. 1
0
 def __ne__(self, other):
     return meop.operate(NE, self, other)
Esempio n. 2
0
 def __lt__(self, other):
     return meop.operate(LT, self, other)
Esempio n. 3
0
 def __le__(self, other):
     return meop.operate(LE, self, other)
Esempio n. 4
0
 def __or__(self, other):
     return meop.operate(Or, self, other)
Esempio n. 5
0
 def __matmul__(self, other):
     return meop.operate(MatMul, self, other)
Esempio n. 6
0
 def __add__(self, other):
     return meop.operate(Add, self, other)
Esempio n. 7
0
 def __xor__(self, other):
     return meop.operate(Xor, self, other)
Esempio n. 8
0
 def __lshift__(self, other):
     return meop.operate(LShift, self, other)
Esempio n. 9
0
 def __rshift__(self, other):
     return meop.operate(RShif, self, other)
Esempio n. 10
0
 def __mod__(self, other):
     return meop.operate(Mod, self, other)
Esempio n. 11
0
 def __pow__(self, other):
     return meop.operate(Pow, self, other)
Esempio n. 12
0
 def __truediv__(self, other):
     return meop.operate(TrueDiv, self, other)
Esempio n. 13
0
 def __floordiv__(self, other):
     return meop.operate(FloorDiv, self, other)
Esempio n. 14
0
 def __sub__(self, other):
     return meop.operate(Sub, self, other)
Esempio n. 15
0
 def __ge__(self, other):
     return meop.operate(GE, self, other)
Esempio n. 16
0
 def __and__(self, other):
     return meop.operate(And, self, other)
Esempio n. 17
0
 def __gt__(self, other):
     return meop.operate(GT, self, other)
Esempio n. 18
0
 def __mul__(self, other):
     return operate(Mul, self, other)