set sum - part-cw/lambdanative GitHub Wiki
(set-sum lst)
Returns the sum of a list of sets.
Parameter | Description |
---|---|
lst | Set list |
Example
> (define a (set-singleton "S" string<?))
> (define b (list->set '("E" "T") string>?))
> (set->list (set-sum (list a b)))
("T" "S" "E")