chickadee » srfi-1 » map-in-order

map-in-order f clist_1 clist_2 ...procedure

A variant of the map procedure that guarantees to apply F across the elements of the LIST_I 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.