úÎ ¶ ZSafe $Set construction.Set export to list.Set Union on two sets.-fromList [0, 1, 2] `union` fromList [0, 2, 4]fromList [0,1,2,4]-fromList [0, 2, 4] `union` fromList [0, 1, 2]fromList [0,1,2,4]Set Difference on two sets.2fromList [0, 1, 2] `difference` fromList [0, 2, 4] fromList [1]2fromList [0, 2, 4] `difference` fromList [0, 1, 2] fromList [4]Set Disjunction on two sets.3fromList [0, 1, 2] `disjunction` fromList [0, 2, 4]fromList [1,4]3fromList [0, 2, 4] `disjunction` fromList [0, 1, 2]fromList [1,4]Set Intersection on two sets.4fromList [0, 1, 2] `intersection` fromList [0, 2, 4]fromList [0,2]4fromList [0, 2, 4] `intersection` fromList [0, 1, 2]fromList [0,2]#setop-0.1.0.1-4MKqWf3CP7FAZ2H7XVN9QSetopfromListtoListunion difference disjunction intersection