Function: cider-library-present-p
cider-library-present-p is a byte-compiled function defined in
cider-client.el.
Signature
(cider-library-present-p LIB-NS)
Documentation
Check whether LIB-NS is present.
If a certain well-known ns in a library is present we assume that library itself is present.
Source Code
;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/cider-client.el
(defun cider-library-present-p (lib-ns)
"Check whether LIB-NS is present.
If a certain well-known ns in a library is present we assume that library
itself is present."
(nrepl-dict-get (cider-sync-tooling-eval (format "(require '%s)" lib-ns)) "value"))