Function: nrepl-dict-vals
nrepl-dict-vals is a byte-compiled function defined in nrepl-dict.el.
Signature
(nrepl-dict-vals DICT)
Documentation
Return all the values in the nREPL DICT.
Source Code
;; Defined in ~/.emacs.d/elpa/cider-20260822.1520/nrepl-dict.el
(defun nrepl-dict-vals (dict)
"Return all the values in the nREPL DICT."
(if (nrepl-dict-p dict)
(mapcar #'cadr (seq-partition (cdr dict) 2))
(error "Not an nREPL dict object: %s" dict)))