Function: -product
-product is a byte-compiled function defined in dash.el.
Signature
(-product LIST)
Documentation
Return the product of LIST.
Source Code
;; Defined in ~/.emacs.d/elpa/dash-20260221.1346/dash.el
(defun -product (list)
"Return the product of LIST."
(declare (pure t) (side-effect-free t))
(apply #'* list))