![]() |
| ||||||
Navigation |
Synopsis Composition of two map values.
Syntax
Exp1 o Exp2
Types
Description Returns the composition of two maps.
Examples
rascal>import Map; ok rascal>("one" : 1, "two" : 2) o (1 : 10, 2 : 20); map[str, int]: ("one":10,"two":20)
Pitfalls We use the letter
o as operator and this may conflict other defined names.
![]() |