Public Vars

Back

drop-while (clj)

(source)

function

(drop-while pred) (drop-while pred coll)
Returns a lazy sequence of the items in coll starting from the first item for which (pred item) returns logical false. Returns a stateful transducer when no collection is provided.

Examples