Function: nrepl-op-supported-p
nrepl-op-supported-p is a byte-compiled function defined in
nrepl-client.el.
Signature
(nrepl-op-supported-p OP CONNECTION)
Documentation
Return t iff the given operation OP is supported by the nREPL CONNECTION.
Source Code
;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/nrepl-client.el
;;; Utilities
(defun nrepl-op-supported-p (op connection)
"Return t iff the given operation OP is supported by the nREPL CONNECTION."
(when (buffer-live-p connection)
(with-current-buffer connection
(and nrepl-ops (nrepl-dict-get nrepl-ops op)))))