take-while
builtin-function
(take-while predicate seq) (take-while predicate)
(take-while predicate seq)
(take-while predicate)
Returns items from seq while they satisfy the function predicate. The second form returns a transducer.
seq
predicate
make-html > (take-while #(< %1 3) (series 10)) it: (1 2)