I have a function for finite lists
> kart :: [a] -> [b] -> [(a,b)]
> kart xs ys = [(x,y) | x <- xs, y <- ys]
but how to implement it for infinite lists? I have heard something about Cantor and set theory.
I also found a function like
> genFromPair (e1, e2) = [x*e1 + y*e2 | x <- [0..], y <- [0..]]
But I'm not sure if it helps, because Hugs only gives out pairs without ever stopping.
Thanks for help.
Your first definition,
kart xs ys = [(x,y) | x <- xs, y <- ys]
, is equivalent towhere
are sequential operations. Redefine them as alternating operations,
and your definition should be good to go for infinite lists as well:
testing,
courtesy of "The Reasoned Schemer". (see also conda, condi, conde, condu).
another way, more explicit, is to create separate sub-streams and combine them:
this actually produces exactly the same results. But now we have more control over how we combine the sub-streams. We can be more diagonal:
so that now we get
With some searching on SO I've also found an answer by Norman Ramsey with seemingly yet another way to generate the sequence, splitting these sub-streams into four areas - top-left tip, top row, left column, and recursively the rest. His
merge
there is the same as our+/
here.Your second definition,
is equivalent to just
Because the list
[0..]
is infinite there's no chance for any other value ofx
to come into play. This is the problem that the above definitions all try to avoid.