map-in-order

[procedure] map-in-order f clist1 clist2 ...

SRFI-1: A variant of the map procedure that guarantees to apply f across the elements of the listi arguments in a left-to-right order. This is useful for mapping procedures that both have side effects and return useful values.

At least one of the list arguments must be finite.

See also map.