Function: map-values-apply
map-values-apply is a byte-compiled function defined in map.el.gz.
Signature
(map-values-apply FUNCTION MAP)
Documentation
Return the result of applying FUNCTION to each value in MAP.
The default implementation delegates to map-apply.
Implementations
#'(map array) in `map.el'.
Undocumented
#'map in `map.el'.
Undocumented
Source Code
;; Defined in /usr/src/emacs/lisp/emacs-lisp/map.el.gz
(cl-defgeneric map-values-apply (function map)
"Return the result of applying FUNCTION to each value in MAP.
The default implementation delegates to `map-apply'."
(map-apply (lambda (_ val)
(funcall function val))
map))