Function: cider-sync-request:who-implements

cider-sync-request:who-implements is a byte-compiled function defined in cider-client.el.

Signature

(cider-sync-request:who-implements NS SYM)

Documentation

Return the implementations of the protocol or multimethod NS and SYM.

The result is a dict with a "kind" of "protocol", "multimethod" or
"other"; for a protocol an "impls" list, for a multimethod a
"dispatch-values" list.

Source Code

;; Defined in ~/.emacs.d/elpa/cider-20260822.1520/cider-client.el
(defun cider-sync-request:who-implements (ns sym)
  "Return the implementations of the protocol or multimethod NS and SYM.
The result is a dict with a \"kind\" of \"protocol\", \"multimethod\" or
\"other\"; for a protocol an \"impls\" list, for a multimethod a
\"dispatch-values\" list."
  (cider--sync-request-ns-sym "who-implements" ns sym))