Function: cider-doctor--library-dir
cider-doctor--library-dir is a byte-compiled function defined in
cider-doctor.el.
Signature
(cider-doctor--library-dir LIBRARY)
Documentation
Return the directory LIBRARY was loaded from, or nil.
Source Code
;; Defined in ~/.emacs.d/elpa/cider-20260822.1520/cider-doctor.el
;;; Helpers
(defun cider-doctor--library-dir (library)
"Return the directory LIBRARY was loaded from, or nil."
(when-let* ((file (locate-library library)))
(file-name-directory file)))