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