Function: map-keys-apply

map-keys-apply is a byte-compiled function defined in map.el.gz.

Signature

(map-keys-apply FUNCTION MAP)

Documentation

Return the result of applying FUNCTION to each key in MAP.

The default implementation delegates to map-apply.

Implementations

(map-keys-apply FUNCTION MAP) in `map.el'.

Undocumented

Source Code

;; Defined in /usr/src/emacs/lisp/emacs-lisp/map.el.gz
(cl-defgeneric map-keys-apply (function map)
  "Return the result of applying FUNCTION to each key in MAP.
The default implementation delegates to `map-apply'."
  (map-apply (lambda (key _)
               (funcall function key))
             map))