keep
builtin-function
(keep func seq)
(keep func)
Returns a lazy list containing the non-null values of func applied to elements
of seq.
The second form returns a transducer.
make-html > (keep #(if (string? %1) (length %1)) '("aap" "noot" 3 4 5 "mies"))
it: (3 4 4)