Function: nrepl-dict-get-in
nrepl-dict-get-in is a byte-compiled function defined in
nrepl-dict.el.
Signature
(nrepl-dict-get-in DICT KEYS)
Documentation
Return the value in a nested DICT.
KEYS is a list of keys. Return nil if any of the keys is not present or if any of the values is nil.
Source Code
;; Defined in ~/.emacs.d/elpa/cider-20260822.1520/nrepl-dict.el
(defun nrepl-dict-get-in (dict keys)
"Return the value in a nested DICT.
KEYS is a list of keys. Return nil if any of the keys is not present or if
any of the values is nil."
(let ((out dict))
(while (and keys out)
(setq out (nrepl-dict-get out (pop keys))))
out))