Function: cider-nrepl-sync-request:eval
cider-nrepl-sync-request:eval is a byte-compiled function defined in
cider-client.el.
Signature
(cider-nrepl-sync-request:eval INPUT &optional CONNECTION NS)
Documentation
Send the INPUT to the nREPL CONNECTION synchronously.
If NS is non-nil, include it in the eval request.
Source Code
;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/cider-client.el
(defun cider-nrepl-sync-request:eval (input &optional connection ns)
"Send the INPUT to the nREPL CONNECTION synchronously.
If NS is non-nil, include it in the eval request."
(nrepl-sync-request:eval input
(or connection
(cider-current-repl 'infer 'ensure))
ns))