Function: cider-util--hash-keys

cider-util--hash-keys is a byte-compiled function defined in cider-util.el.

Signature

(cider-util--hash-keys HASHTABLE)

Documentation

Return a list of keys in HASHTABLE.

Source Code

;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/cider-util.el
(defun cider-util--hash-keys (hashtable)
  "Return a list of keys in HASHTABLE."
  (let ((keys '()))
    (maphash (lambda (k _v) (setq keys (cons k keys))) hashtable)
    keys))