I'm trying to learn Haskell, and I'm writing the unzip function (yes I know it's built in, this is practice) but I'm having issues with my recursion line. I have:
-- unzip turns a list of two element tuples into two lists
unzip' [] = ([],[])
unzip' [(x,y):ls] =
let
(a, b) = unzip' ls
in
([x] ++ a, [y] ++ b)
But I get the error:
Couldn't match expected type `(t, t1)'
against inferred type `[(t, t1)]'
Expected type: [(t, t1)] -> (t2, t3)
Inferred type: [[(t, t1)]] -> ([a], [a1])
In the expression: unzip' ls
In a pattern binding: (a, b) = unzip' ls
I don't understand how to unpack the results of the recursive call. Can anyone explain how to unpack the two lists from the returned tuple?
e:esinstead of[e] ++ esthis is much cheaper (1 constructor call) vs. 1 constructor calls and a not so cheap function call. Even if that nanosecond does not matter, the first form is much more readable. – Ingo Sep 23 '11 at 7:27