Function: nrepl-dict-p

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

Signature

(nrepl-dict-p OBJECT)

Documentation

Return t if OBJECT is an nREPL dict.

Source Code

;; Defined in ~/.emacs.d/elpa/cider-20260822.1520/nrepl-dict.el
(defsubst nrepl-dict-p (object)
  "Return t if OBJECT is an nREPL dict."
  (eq (car-safe object) 'dict))