This is the textbook zip function:
zip :: [a] -> [a] -> [(a,a)]
zip [] _ = []
zip _ [] = []
zip (x:xs) (y:ys) = (x,y) : zip xs ys
I asked on #haskell earlier wether "zip" could be implemented using "foldr" alone, no recursion, no pattern matching. After some thinking, we noticed the recursion could be eliminated using continuations:
zip' :: [a] -> [a] -> [(a,a)]
zip' = foldr cons nil
where
cons h t (y:ys) = (h,y) : (t ys)
cons h t [] = []
nil = const []
We are still left with pattern matching. After some more neuron toasting I came up with an incomplete answer that I thought was logical:
zip :: [a] -> [a] -> [a]
zip a b = (zipper a) (zipper b) where
zipper = foldr (\ x xs cont -> x : cont xs) (const [])
It returns a flat list, but does the zipping. I was certain it made sense, but Haskell complained about the type. I proceeded to test it on a untyped lambda calculator, and it worked. Why can't Haskell accept my function?
The error is:
zip.hs:17:19:
Occurs check: cannot construct the infinite type:
t0 ~ (t0 -> [a]) -> [a]
Expected type: a -> ((t0 -> [a]) -> [a]) -> (t0 -> [a]) -> [a]
Actual type: a
-> ((t0 -> [a]) -> [a]) -> (((t0 -> [a]) -> [a]) -> [a]) -> [a]
Relevant bindings include
b ∷ [a] (bound at zip.hs:17:7)
a ∷ [a] (bound at zip.hs:17:5)
zip ∷ [a] -> [a] -> [a] (bound at zip.hs:17:1)
In the first argument of ‘foldr’, namely ‘cons’
In the expression: ((foldr cons nil a) (foldr cons nil b))
zip.hs:17:38:
Occurs check: cannot construct the infinite type:
t0 ~ (t0 -> [a]) -> [a]
Expected type: a -> (t0 -> [a]) -> t0 -> [a]
Actual type: a -> (t0 -> [a]) -> ((t0 -> [a]) -> [a]) -> [a]
Relevant bindings include
b ∷ [a] (bound at zip.hs:17:7)
a ∷ [a] (bound at zip.hs:17:5)
zip ∷ [a] -> [a] -> [a] (bound at zip.hs:17:1)
In the first argument of ‘foldr’, namely ‘cons’
In the fourth argument of ‘foldr’, namely ‘(foldr cons nil b)’
As to why your definition is not accepted: look at this:
λ> :t \ x xs cont -> x : cont xs
... :: a -> r -> ((r -> [a]) -> [a])
λ> :t foldr
foldr :: (a' -> b' -> b') -> b' -> [a'] -> b'
so if you want to use the first function as an argument for foldr
you get (if you match the types of foldr
s first argument:
a' := a
b' := r
b' := (r -> [a]) -> [a]
which of course is a problem (as r
and (r -> [a]) -> [a]
mutual-recursive and should both be equal to b'
)
That is what the compiler tells you
You can repair your idea using
newtype Fix a t = Fix { unFix :: Fix a t -> [a] }
which I borrowed form it original use.
With this you can write:
zipCat :: [a] -> [a] -> [a]
zipCat a b = (unFix $ zipper a) (zipper b) where
zipper = foldr foldF (Fix $ const [])
foldF x xs = Fix (\ cont -> x : (unFix cont $ xs))
and you get:
λ> zipCat [1..4] [5..8]
[1,5,2,6,3,7,4,8]
which is (what I think) you wanted.
BUT obvious here both of your lists needs to be of the same type so I don't know if this will really help you
I can offer you a slightly different perspective (I think) to arrive at a similar solution as Carsten's (but with simpler types).
Here's your code again, for your "weaving zip" (I'm writing tr
for "the type of r
", similarly tq
for "the type of q
"; I always use "r
" for the recursive result argument of combining function in foldr
definitions, as a mnemonic device):
zipw :: [a] -> [a] -> [a]
zipw xs ys = (zipper xs) (zipper ys) where
zipper xs q = foldr (\ x r q -> x : q r) (const []) xs q
--- c -------------- --- n ----
-- zipper [x1,x2,x3] (zipper ys) =
-- c x1 (c x2 (c x3 n)) (zipper ys)
--- r -------- --- q ----- tr ~ tq ; q r :: [a]
-- => r r :: [a]
-- => r :: tr -> [a]
-- tr ~ tr -> [a]
So, this is the infinite type. Haskell doesn't allow this for an arbitrary type (which is what type variables stand for).
But Haskell's datatypes do actually admit recursion. Lists, trees, etc. — all the usual types are recursive. This is allowed:
data Tree a = Branch (Tree a) (Tree a)
Here we do have the same type on both sides of the equation, just as we have tr
on both sides of the type equivalency, tr ~ tr -> [a]
. But it's a specific type, not an arbitrary one.
So we just declare it so, following the above "equation":
newtype TR a = Pack { unpack :: TR a -> [a] }
-- unpack :: TR a -> TR a -> [a]
What's a Tree a
type? It's "something" that goes into a Branch
, which is a Tree a
. A given tree doesn't have to be infinitely constructed, because undefined
has type Tree a
too.
What's a TR a
type? It's "something" that goes into TR a -> [a]
, which is a TR a
. A given TR a
doesn't have to be infinitely constructed, because const []
can be of type TR a
too.
Our wannabe recursive type tr ~ tr -> [a]
has become bona fide recursive type definition newtype TR a = Pack { TR a -> [a] }
, hiding behind the data constructor, Pack
(which will be gotten rid of by the compiler, thanks to the newtype
keyword being used, but that's an extraneous detail; it works with data
too).
Haskell handles the recursivity for us here. Type theoreticians love to deal with this themselves, with Fix
and whatnot; but a Haskell user already has this available to them, in the language. We don't have to understand how it is implemented, to be able to use it. No need to reinvent the wheel until we want to build it ourselves.
So, zipper xs
had type tr
; now it becomes TR a
, so this is what the new zipper xs
must return — the "packed" list-producing function. The foldr
combining function must return what the zipper
call returns (by the virtues of foldr
definition). To apply the packed function we now need to unpack
it first:
zipw :: [a] -> [a] -> [a]
zipw xs ys = unpack (zipper xs) (zipper ys)
where
zipper :: [a] -> TR a
zipper = foldr (\ x r -> Pack $ \q -> x : unpack q r)
(Pack $ const [])
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With