Function: ht-amap
ht-amap is a macro defined in ht.el.
Signature
(ht-amap FORM TABLE)
Documentation
Anaphoric version of ht-map.
For every key-value pair in TABLE, evaluate FORM with the
variables KEY and VALUE bound. If you don't use both of
these variables, then use ht-map to avoid warnings.
Source Code
;; Defined in ~/.emacs.d/elpa/ht-20230703.558/ht.el
(defmacro ht-amap (form table)
"Anaphoric version of `ht-map'.
For every key-value pair in TABLE, evaluate FORM with the
variables KEY and VALUE bound. If you don't use both of
these variables, then use `ht-map' to avoid warnings."
`(ht-map (lambda (key value) ,form) ,table))