How do I convert a list to a tuple in Haskell?
Posted
by Alex
on Stack Overflow
See other posts from Stack Overflow
or by Alex
Published on 2010-05-27T13:07:56Z
Indexed on
2010/05/27
15:01 UTC
Read the original article
Hit count: 116
haskell
How can I best convert a list to a tuple in Haskell:
[1,2,3,4,5,6] -> (1,2,3,4,5,6)
© Stack Overflow or respective owner