|
| |||||||
| Navigation |
Synopsis Equal operator on node values.
Syntax
Exp1 == Exp2
Types
Description Yields
true if the node names of the values of Exp1 and Exp2 are equal and
the children of each node are pairwise equal, otherwise false.
Examples
rascal>"f"(1, "abc", true) == "f"(1, "abc", true); bool: true rascal>"f"(1, "abc", true) == "f"(1, "def", true); bool: false |