This function returns the difference between two sets.
All of the examples assume that $set
is a set with {"a", "b", "c"}
.
(set-diff $set (new-set))
➜set{"a", "b", "c"}
(set-diff $set (new-set "b"))
➜set{"a", "c"}
(set-diff $set (new-set "d"))
➜set{"a", "b", "c"}
This form returns base - other
, i.a. a new set that contains all values that
are not part of the other
set.