Function: ht-values
ht-values is a byte-compiled function defined in ht.el.
Signature
(ht-values TABLE)
Documentation
Return a list of all the values in TABLE.
Source Code
;; Defined in ~/.emacs.d/elpa/ht-20230703.558/ht.el
(defun ht-values (table)
"Return a list of all the values in TABLE."
(declare (side-effect-free t))
(ht-map (lambda (_key value) value) table))