![]() |
| ||||||
Navigation |
Synopsis Superset operator on set values.
Syntax
Exp1 >= Exp2
Types
Description Yields
true if the value of Exp1 is a superset of the value of Exp2 and false otherwise.
Examples
rascal>{1, 2, 3, 4} >= {3, 2, 1}; bool: true rascal>{1, 2, 3, 4} >= {4, 3, 2, 1}; bool: true Questions
Question [1].
![]() ![]()
Question [2].
![]() ![]()
Question [3].
![]() ![]() ![]() |