Function: cider-sync-request:fn-refs
cider-sync-request:fn-refs is a byte-compiled function defined in
cider-client.el.
Signature
(cider-sync-request:fn-refs NS SYM)
Documentation
Return a list of functions that reference 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-refs (ns sym)
"Return a list of functions that reference the function identified by NS and SYM."
(cider-ensure-op-supported "fn-refs")
(thread-first `("op" "fn-refs"
"ns" ,ns
"sym" ,sym)
(cider-nrepl-send-sync-request)
(nrepl-dict-get "fn-refs")))