Function: --mapcat

--mapcat is a macro defined in dash.el.

Signature

(--mapcat FORM LIST)

Documentation

Anaphoric form of -mapcat.

Source Code

;; Defined in ~/.emacs.d/elpa/dash-20260221.1346/dash.el
(defmacro --mapcat (form list)
  "Anaphoric form of `-mapcat'."
  (declare (debug (form form)))
  `(apply #'append (--map ,form ,list)))