Function: --min-by
--min-by is a macro defined in dash.el.
Signature
(--min-by FORM LIST)
Documentation
Anaphoric version of -min-by.
The items for the comparator form are exposed as "it" and "other".
Source Code
;; Defined in ~/.emacs.d/elpa/dash-20260221.1346/dash.el
(defmacro --min-by (form list)
"Anaphoric version of `-min-by'.
The items for the comparator form are exposed as \"it\" and \"other\"."
(declare (debug (def-form form)))
`(-min-by (lambda (it other) (ignore it other) ,form) ,list))