Function: -map

-map is a byte-compiled function defined in dash.el.

Signature

(-map FN LIST)

Documentation

Apply FN to each item in LIST and return the list of results.

This function's anaphoric counterpart is --map.

View in manual

Source Code

;; Defined in ~/.emacs.d/elpa/dash-20260221.1346/dash.el
(defun -map (fn list)
  "Apply FN to each item in LIST and return the list of results.

This function's anaphoric counterpart is `--map'."
  (declare (important-return-value t))
  (mapcar fn list))