Function: nrepl-dict

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

Signature

(nrepl-dict &rest KEY-VALS)

Documentation

Create nREPL dict from KEY-VALS.

Source Code

;; Defined in ~/.emacs.d/elpa/cider-20260822.1520/nrepl-dict.el
(defun nrepl-dict (&rest key-vals)
  "Create nREPL dict from KEY-VALS."
  (if (zerop (% (length key-vals) 2))
      (cons 'dict key-vals)
    (error "An even number of KEY-VALS is needed to build a dict object")))