Navigation
Synopsis Equal operator on set values.
Syntax Exp1 == Exp2
Types
Exp1 Exp2 Exp1 == Exp2
set[T1] set[T2] bool
Description Yields true if both arguments are equal sets and false otherwise.
Examples
rascal>{1, 2, 3} == {3, 2, 1};
bool: true
rascal>{1, 2, 3} == {1, 2};
bool: false

Questions
Question [1].
The type of {$2029-04-02T20:45:24.371+01:00$} == {$2006-08-05T09:22:05.447+01:00$, $2110-11-01$, $1997-01-06$, $2047-03-01T17:06:56.811+01:00$, $2055-05-01$} is

Question [2].
({"Grape", "Sy Snootles", "Tibor", "Z", "Wasabi"} == {"Grape", "Sy Snootles", "Tibor", "Z", "Wasabi"}) == 

Question [3].
({9, 33} == {33,9,18}) == 



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.