set_union


set_union(s1, @rest...)
      

Return a new set that is the union of the sets s1, ....

Examples:


set_union(#(1))
// #(1)
set_union(#(1,2), #(3,4,1))
// #(1,2,3,4)
      

Also see:

set_intersection
set_difference


Core Module Index | Contents