예제 #1
0
 def __ne__(self, other):
     other = MIArray.__value_other(self, other)
     r = MIArray(ArrayMath.notEqual(self.array, other))
     return r
예제 #2
0
 def __ne__(self, other):
     if isinstance(other, MIArray):
         r = MIArray(ArrayMath.notEqual(self.array, other.array))
     else:
         r = MIArray(ArrayMath.notEqual(self.array, other))
     return r
예제 #3
0
 def __ne__(self, other):
     other = MIArray.__value_other(self, other)
     r = MIArray(ArrayMath.notEqual(self.array, other))
     return r
예제 #4
0
 def __ne__(self, other):
     if isinstance(other, MIArray):
         r = MIArray(ArrayMath.notEqual(self.array, other.array))
     else:
         r = MIArray(ArrayMath.notEqual(self.array, other))
     return r