1 2 3 4 5 6 7 8 9 10 11
--- name: "list/drop-while" module: "lists" section: "Splitting" --- Drop elements from the front while a predicate holds. ```sema (list/drop-while (fn (x) (< x 4)) '(1 2 3 4 5)) ; => (4 5) ```