Rascal Language ReferenceExpressionsValuesSetSet EqualOn this pageSet Equalrascal-0.40.17SynopsisEqual operator on set values.SyntaxExp₁ == Exp₂TypesExp₁Exp₂Exp₁ == Exp₂set[T₁]set[T₂]boolDescriptionYields true if both arguments are equal sets and false otherwise.Examplesrascal>{1, 2, 3} == {3, 2, 1};bool: truerascal>{1, 2, 3} == {1, 2};bool: false