Function: --map-first
--map-first is a macro defined in dash.el.
Signature
(--map-first PRED REP LIST)
Documentation
Anaphoric form of -map-first.
Source Code
;; Defined in ~/.emacs.d/elpa/dash-20260221.1346/dash.el
(defmacro --map-first (pred rep list)
"Anaphoric form of `-map-first'."
(declare (debug (def-form def-form form)))
`(-map-first (lambda (it) (ignore it) ,pred)
(lambda (it) (ignore it) ,rep)
,list))