Function: ht-keys

ht-keys is a byte-compiled function defined in ht.el.

Signature

(ht-keys TABLE)

Documentation

Return a list of all the keys in TABLE.

Source Code

;; Defined in ~/.emacs.d/elpa/ht-20230703.558/ht.el
(defun ht-keys (table)
  "Return a list of all the keys in TABLE."
  (declare (side-effect-free t))
  (ht-map (lambda (key _value) key) table))