How do you zip two sequences in Clojure? IOW, What is the Clojure equivalent of Python zip(a, b)?
EDIT:
I know how to define such a function. I was just wondering whether standard library provides such a function already. (I would be *very* surprised if it doesn’t.)
You can easily define function like Python’s zip:
In case of
(zip a b), this becomes(map vector a b)