Function: cl-mapcon
cl-mapcon is an autoloaded and byte-compiled function defined in
cl-extra.el.gz.
Signature
(cl-mapcon FUNCTION LIST...)
Documentation
Like cl-maplist, but nconc's together the values returned by the function.
Aliases
mapcon (obsolete since 27.1)
Source Code
;; Defined in /usr/src/emacs/lisp/emacs-lisp/cl-extra.el.gz
;;;###autoload
(defun cl-mapcon (cl-func cl-list &rest cl-rest)
"Like `cl-maplist', but nconc's together the values returned by the function.
\n(fn FUNCTION LIST...)"
(apply #'nconc (apply #'cl-maplist cl-func cl-list cl-rest)))