Skip to content
Chris Petersen edited this page Mar 24, 2016 · 1 revision

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)
Clone this wiki locally