Navigation
Synopsis Not equal operator on node values.
Syntax Exp1 != Exp2
Types
Exp1 Exp2 Exp1 != Exp2
node node bool
Description Yields true if the node names of the values of Exp1 and Exp2 are unequal or any of the children of each node is pairwise unequal, otherwise true.
Examples
rascal>"f"(1, "abc", true) != "g"(1, "abc", true);
bool: true
rascal>"f"(1, "abc", true) != "f"(1, "abc", true);
bool: false
Is this page unclear, or have you spotted an error? Please add a comment below and help us to improve it. For all other questions and remarks, visit ask.rascal-mpl.org.