Function: nrepl-dict-from-hash

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

Signature

(nrepl-dict-from-hash HASH)

Documentation

Create nREPL dict from HASH.

Source Code

;; Defined in ~/.emacs.d/elpa/cider-20260822.1520/nrepl-dict.el
(defun nrepl-dict-from-hash (hash)
  "Create nREPL dict from HASH."
  (let ((dict (nrepl-dict)))
    (maphash (lambda (k v) (nrepl-dict-put dict k v)) hash)
    dict))