Function: ht-aeach
ht-aeach is a macro defined in ht.el.
Signature
(ht-aeach FORM TABLE)
Documentation
Anaphoric version of ht-each.
For every key-value pair in TABLE, evaluate FORM with the variables key and value bound.
Source Code
;; Defined in ~/.emacs.d/elpa/ht-20230703.558/ht.el
(defmacro ht-aeach (form table)
"Anaphoric version of `ht-each'.
For every key-value pair in TABLE, evaluate FORM with the
variables key and value bound."
`(ht-each (lambda (key value) ,form) ,table))