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