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