Function: -running-product
-running-product is a byte-compiled function defined in dash.el.
Signature
(-running-product LIST)
Documentation
Return a list with running products of items in LIST.
LIST must be non-empty.
Source Code
;; Defined in ~/.emacs.d/elpa/dash-20260221.1346/dash.el
(defun -running-product (list)
"Return a list with running products of items in LIST.
LIST must be non-empty."
(declare (pure t) (side-effect-free t))
(or list (signal 'wrong-type-argument (list #'consp list)))
(-reductions #'* list))