Function: -mapcat

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

Signature

(-mapcat FN LIST)

Documentation

Return the concatenation of the result of mapping FN over LIST.

Thus function FN should return a list.

View in manual

Source Code

;; Defined in ~/.emacs.d/elpa/dash-20260221.1346/dash.el
(defun -mapcat (fn list)
  "Return the concatenation of the result of mapping FN over LIST.
Thus function FN should return a list."
  (declare (important-return-value t))
  (--mapcat (funcall fn it) list))