pair-for-each

[procedure] pair-for-each f clist1 clist2 ...

SRFI-1: Like for-each, but f is applied to successive sublists of the argument lists. That is, f is applied to the cons cells of the lists, rather than the lists' elements. These applications occur in left-to-right order.

See also for-each.