Lecture overview -- Keyboard shortcut: 'u'  Previous page: Accumulation -- Keyboard shortcut: 'p'  Next page: The zipping function -- Keyboard shortcut: 'n'  Lecture notes - all slides and notes together  slide -- Keyboard shortcut: 't'  Textbook -- Keyboard shortcut: 'v'  Help page about these notes  Alphabetic index  Course home    Lecture 4 - Page 18 : 34
Functional Programming in Scheme
Higher-order Functions
Zipping

Two equally long lists can be pair wise composed to a single list by means of zipping them

Zipping two lists with the function z. The head of the resulting list is (z e i f i), where the element e i comes from the first list, and f i comes from the other.