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