Function: cider-jar-contains-p

cider-jar-contains-p is a byte-compiled function defined in cider-jar.el.

Signature

(cider-jar-contains-p JARFILE NAME)

Documentation

Does the JARFILE contain a file with the given NAME?

Source Code

;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/cider-jar.el
(defun cider-jar-contains-p (jarfile name)
  "Does the JARFILE contain a file with the given NAME?"
  (map-elt (cider-jar-contents-cached jarfile) name))