![]() |
| ||||||
Navigation |
Synopsis Composition of two list relation values.
Syntax
Exp1 o Exp2
Types
Description Returns the composition of two binary list relations.
Examples
rascal>[<1,10>, <2,20>, <3,15>] o [<10,100>, <20,200>];
lrel[int,int]: [
<1,100>,
<2,200>
]
Pitfalls We use the letter
o as operator and this may conflict other defined names.
Questions
Question [1].
![]() ![]()
Question [2].
![]() ![]() ![]() |