Function: -unzip-lists
-unzip-lists is a byte-compiled function defined in dash.el.
Signature
(-unzip-lists LISTS)
Documentation
Unzip LISTS.
This works just like -zip-lists (which see), but takes a list
of lists instead of a variable number of arguments, such that
(-unzip-lists (-zip-lists ARGS...))
is identity (given that the lists comprising ARGS are of the same length).
Source Code
;; Defined in ~/.emacs.d/elpa/dash-20260221.1346/dash.el
(defun -unzip-lists (lists)
"Unzip LISTS.
This works just like `-zip-lists' (which see), but takes a list
of lists instead of a variable number of arguments, such that
(-unzip-lists (-zip-lists ARGS...))
is identity (given that the lists comprising ARGS are of the same
length)."
(declare (pure t) (side-effect-free t))
(apply #'-zip-lists lists))