Function: ht-items

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

Signature

(ht-items TABLE)

Documentation

Return a list of two-element lists '(key value) from TABLE.

Source Code

;; Defined in ~/.emacs.d/elpa/ht-20230703.558/ht.el
(defun ht-items (table)
  "Return a list of two-element lists \\='(key value) from TABLE."
  (declare (side-effect-free t))
  (ht-amap (list key value) table))