We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Returns the elements of set1 not found in set2.
> (define a (list->set '("a" "b" "c") string<?)) > (define b (list->set '("b" "g" "h") string<?)) > (set->list (set-difference a b)) ("a" "c")
Sorry, there was an error rendering this page.