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