zip   scheme


Defined in:  https://github.com/digego/extempore/tree/v0.8.9/libs/core/pattern-language.xtm

Implementation

(define zip (lambda (a b) (flatten (map (lambda (x y) (list x y)) a b))))


Back to Index

Similar Entries