Function: cider-resolve--get-in

cider-resolve--get-in is a byte-compiled function defined in cider-resolve.el.

Signature

(cider-resolve--get-in &rest KEYS)

Documentation

Return the track-state cache value at KEYS for the current connection.

Source Code

;; Defined in ~/.emacs.d/elpa/cider-20260822.1520/cider-resolve.el
(defun cider-resolve--get-in (&rest keys)
  "Return the track-state cache value at KEYS for the current connection."
  (when-let* ((cache (cider-ns-load-cache)))
    (nrepl-dict-get-in cache keys)))