Home / Emacs Lisp / Map n-to-m side-effects: mapc function
mapc
If performance is critical and the mapping function is inline,
prefer the dolist macro over the mapc function
dolist
to avoid the indirection overhead of lambda.
lambda