remove
builtin-function
(remove predicate seq)
(remove predicate)
Returns a lazy list containing the elements of seq that do not satisfy the function
predicate. The second form returns a transducer.
make-html > (remove odd? (series 10))
it: (2 4 6 8 10)
make-html > (filter odd? (series 10))
it: (1 3 5 7 9)