![]() |
| ||||||
Navigation |
Synopsis Less than operator on node values.
Syntax
Exp1 < Exp2
Types
Description Comparison on nodes is defined by a lexicographic ordering. Node
N = F(N1, ..., Nn) is less than node
N = G(M1, ..., Mm) when:
Examples
rascal>"f"(10, "abc") < "g"(3); bool: true rascal>"f"(10) < "f"(10, "abc"); bool: true ![]() |