![]() |
| ||||||
Navigation |
Synopsis Not equal operator on node values.
Syntax
Exp1 != Exp2
Types
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 ![]() |