Function: nrepl-dict-flat-map

nrepl-dict-flat-map is a byte-compiled function defined in nrepl-dict.el.

Signature

(nrepl-dict-flat-map FUNCTION DICT)

Documentation

Map FUNCTION over DICT and flatten the result.

FUNCTION follows the same restrictions as in nrepl-dict-map, and it must also always return a sequence (since the result will be flattened).

Source Code

;; Defined in ~/.emacs.d/elpa/cider-20260822.1520/nrepl-dict.el
(defun nrepl-dict-flat-map (function dict)
  "Map FUNCTION over DICT and flatten the result.
FUNCTION follows the same restrictions as in `nrepl-dict-map', and it must
also always return a sequence (since the result will be flattened)."
  (when dict
    (apply #'append (nrepl-dict-map function dict))))