Variable: cider-jar-content-cache
cider-jar-content-cache is a variable defined in cider-jar.el.
Value
#s(hash-table size 65 test equal rehash-size 1.5 rehash-threshold 0.8125 data
())
Documentation
Nested hash table of jar-path -> file-path -> bool.
This provides an efficient check to see if a file exists in a jar or not.
Source Code
;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/cider-jar.el
(defvar cider-jar-content-cache (make-hash-table :test #'equal)
"Nested hash table of jar-path -> file-path -> bool.
This provides an efficient check to see if a file exists in a jar or not.")