Bases: Condition
Implementation of the inequality operator '!='.
Source code in valor/schemas/symbolic/operators.py
| class Ne(Condition):
"""Implementation of the inequality operator '!='."""
def to_dict(self):
return Not(Eq(lhs=self.lhs, rhs=self.rhs)).to_dict()
|