split-at
builtin-function
(split-at count seq)
Equivalent to (list (take count seq) (drop count seq)).
(list (take count seq) (drop count seq))
make-html > (split-at 4 (series 10)) it: ((1 2 3 4) (5 6 7 8 9 10))