Function: map-do
map-do is a byte-compiled function defined in map.el.gz.
Signature
(map-do FUNCTION MAP)
Documentation
Apply FUNCTION to each element of MAP and return nil.
FUNCTION is called with two arguments, the key and the value.
Implementations
#'(map array) in `map.el'.
Undocumented
#'(map list) in `map.el'.
Undocumented
#'(map hash-table) in `map.el'.
Undocumented
Source Code
;; Defined in /usr/src/emacs/lisp/emacs-lisp/map.el.gz
(cl-defgeneric map-do (function map)
"Apply FUNCTION to each element of MAP and return nil.
FUNCTION is called with two arguments, the key and the value.")