Variable: cider-jar-content-cache

cider-jar-content-cache is a variable defined in cider-jar.el.

Value

#s(hash-table test equal)

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.")