Function: mapcar*

mapcar* is a for cl-mapcar, defined in cl-lib.el.gz.

This function is obsolete since 27.1; use cl-mapcar instead.

Signature

(mapcar* FUNCTION SEQ...)

Documentation

Apply FUNCTION to each element of SEQ, and make a list of the results.

If there are several SEQs, FUNCTION is called with that many arguments, and mapping stops as soon as the shortest list runs out. With just one SEQ, this is like mapcar. With several, it is like the Common Lisp mapcar function extended to arbitrary sequence types.

Aliases

mapcar* (obsolete since 27.1)