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