Function: MAPPEND

Documentation

maps elements in list and finally appends all resulted lists.

Source

(defun mappend (fn &rest lsts)
  "maps elements in list and finally appends all resulted lists."
  (apply #'append (apply #'mapcar fn lsts)))
Source Context