Function: nrepl-dict-keys

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

Signature

(nrepl-dict-keys DICT)

Documentation

Return all the keys in the nREPL DICT.

Source Code

;; Defined in ~/.emacs.d/elpa/cider-20260822.1520/nrepl-dict.el
(defun nrepl-dict-keys (dict)
  "Return all the keys in the nREPL DICT."
  (if (nrepl-dict-p dict)
      (mapcar #'car (seq-partition (cdr dict) 2))
    (error "Not an nREPL dict object: %s" dict)))