- iset-remove predicate isetprocedure
Returns a newly allocated iset containing just the elements of iset that do not satisfy predicate.
Example:
(iset->list (iset-remove (lambda (x) (< x 6)) (iset 2 3 5 7 11))) ⇒ (7 11)
Returns a newly allocated iset containing just the elements of iset that do not satisfy predicate.
Example:
(iset->list (iset-remove (lambda (x) (< x 6)) (iset 2 3 5 7 11))) ⇒ (7 11)