drop-while
builtin-function
(drop-while predicate seq) (drop-while predicate)
(drop-while predicate seq)
(drop-while predicate)
Skips elements of seq while they satisfy the predicate. The second form returns a transducer.
seq
predicate
make-html > (drop-while odd? '(1 1 2 3 4 5)) it: (2 3 4 5)