![]() |
| ||||||
Navigation |
Synopsis Equality operator on maps.
Syntax
Exp1 == Exp2
Types
Description Yields
true if both arguments contain the same key/value pairs, and false otherwise.
Examples
rascal>("apple": 1, "pear": 2) == ("pear": 2, "apple": 1); bool: true rascal>("apple": 1, "pear": 2) == ("apple": 1, "banana": 3) bool: false ![]() |