In python zip function accepts arbitrary number of lists and zips them together.
>>> l1 = [1,2,3]
>>> l2 = [5,6,7]
>>> l3 = [7,4,8]
>>> zip(l1,l2,l3)
[(1, 5, 7), (2, 6, 4), (3, 7, 8)]
>>>
How can I zip together multiple lists in haskell?
|
A generalization of zip can be achieved using Applicative Notation. It's a bit unpleasant to use because of the newtype wrapping/unwrapping, but if you are doing something that can't be done with a The type is
This generalizes to functions of arbitrary arity and type using partial application:
See how (+) is partially applied here? If you don't like adding ZipList and getZipList everywhere, you could recreate the notation easily enough:
Then the notation for
Applicative notation is a very powerful and general technique that has much wider scope than just generalized zipping. See the Typeclassopedia for more on Applicative notation. |
|||||||||
|
|
Looks like there is also a |
|||||||||||||||
|
|
You can transpose a list of lists:
|
|||||||||
|
|
It's non-trivial, but it is doable. See this blog post. I dont know whether this made into some library. Here is another version, which is simplier. This one could actually be cut-n-pasted here:
If you are just starting to learn Haskell, postpone understanding it for some time :) |
||||
|
|
Generalizing zipping is actually quite easy. You just have to write specialized versions of the
Now you can zip as many lists as you want:
or alternatively:
|
|||
|
|
|
For a specific number of lists, you can so something like this:
It's not a generic function, but a pattern you can apply to a different number of lists. |
|||
|
|
|
GHC also supports parallel list comprehensions:
I just tested it up to 26 parallel variables, which should be enough for all practical purposes. It's a bit hacky (and non-standard) though, so in case you're writing something serious, ZipList may be the better way to go. |
|||
|
|
|
If all your data is of the same type you could do:
Example:
|
|||
|
|
zip3is for zipping 3 lists. – Pratik Deoghare Jun 14 '10 at 6:02