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