haskell list to tuple

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 13:11 UTC
Read the original article Hit count: 88

Filed under:

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

Related posts about haskell