Function: cider--sync-request-ns-sym

cider--sync-request-ns-sym is a byte-compiled function defined in cider-client.el.

Signature

(cider--sync-request-ns-sym OP NS SYM)

Documentation

Send the ns/sym request OP for NS and SYM and return its like-named result.

OP is the bare op name (without the "cider/" prefix), which is also the key the result is stored under.

Source Code

;; Defined in ~/.emacs.d/elpa/cider-20260822.1520/cider-client.el
(defun cider--sync-request-ns-sym (op ns sym)
  "Send the ns/sym request OP for NS and SYM and return its like-named result.
OP is the bare op name (without the \"cider/\" prefix), which is also the key
the result is stored under."
  (thread-first `("op" ,(concat "cider/" op)
                  "ns" ,ns
                  "sym" ,sym)
                (cider-nrepl-sync-request)
                (nrepl-dict-get op)))