Function: cider-sync-request:protocols-with-method

cider-sync-request:protocols-with-method is a byte-compiled function defined in cider-client.el.

Signature

(cider-sync-request:protocols-with-method METHOD)

Documentation

Return the protocols declaring a method named METHOD.

Each is a dict with a "name" and source location.

Source Code

;; Defined in ~/.emacs.d/elpa/cider-20260822.1520/cider-client.el
(defun cider-sync-request:protocols-with-method (method)
  "Return the protocols declaring a method named METHOD.
Each is a dict with a \"name\" and source location."
  (thread-first `("op" "cider/protocols-with-method"
                  "method" ,method)
                (cider-nrepl-sync-request)
                (nrepl-dict-get "protocols-with-method")))