set list - part-cw/lambdanative GitHub Wiki
(set->list s)
Returns a list of the elements in a set.
Parameter | Description |
---|---|
s | Set |
Example
> (define a (list->set '(1 2 3) <))
> (set->list a)
(1 2 3)
Returns a list of the elements in a set.
Parameter | Description |
---|---|
s | Set |
> (define a (list->set '(1 2 3) <))
> (set->list a)
(1 2 3)