Function: cider-sync-request:fn-deps
cider-sync-request:fn-deps is a byte-compiled function defined in
cider-client.el.
Signature
(cider-sync-request:fn-deps NS SYM)
Documentation
Return a list of function deps for the function identified by NS and SYM.
Source Code
;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/cider-client.el
(defun cider-sync-request:fn-deps (ns sym)
"Return a list of function deps for the function identified by NS and SYM."
(cider-ensure-op-supported "fn-deps")
(thread-first `("op" "fn-deps"
"ns" ,ns
"sym" ,sym)
(cider-nrepl-send-sync-request)
(nrepl-dict-get "fn-deps")))