Function: cider-nrepl-op-supported-p
cider-nrepl-op-supported-p is a byte-compiled function defined in
cider-client.el.
Signature
(cider-nrepl-op-supported-p OP &optional CONNECTION SKIP-ENSURE)
Documentation
Check whether the CONNECTION supports the nREPL middleware OP.
Skip check if repl is active if SKIP-ENSURE is non nil.
Source Code
;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/cider-client.el
(defun cider-nrepl-op-supported-p (op &optional connection skip-ensure)
"Check whether the CONNECTION supports the nREPL middleware OP.
Skip check if repl is active if SKIP-ENSURE is non nil."
(nrepl-op-supported-p op (or connection
(cider-current-repl 'infer (if skip-ensure
nil
'ensure)))))