Navigation
Synopsis Strict superset operator on set values.
Syntax Exp1 > Exp2
Types
Exp1 Exp2 Exp1 > Exp2
set[T1] set[T2] bool
Description Yields true if the value of Exp1 is a strict 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: false

Questions
Question [1].
The type of [false, false, true, false, false] > [true] is

Question [2].
{99,54,59} > {59} == 

Question [3].
{false, true} > {false, true} == 



Is this page unclear, or have you spotted an error? Please add a comment below and help us to improve it. For all other questions and remarks, visit ask.rascal-mpl.org.