Function: -partition-all

-partition-all is a byte-compiled function defined in dash.el.

Signature

(-partition-all N LIST)

Documentation

Return a new list with the items in LIST grouped into N-sized sublists.

The last group may contain less than N items.

Source Code

;; Defined in ~/.emacs.d/elpa/dash-20260221.1346/dash.el
(defun -partition-all (n list)
  "Return a new list with the items in LIST grouped into N-sized sublists.
The last group may contain less than N items."
  (declare (pure t) (side-effect-free t))
  (-partition-all-in-steps n n list))