Tagged Questions
15
votes
4answers
534 views
Left and Right Folding over an Infinite list
I have issues with the following passage from Learn You A Haskell (Great book imo, not dissing it):
One big difference is that right
folds work on infinite lists, whereas left ones don't! To put ...
13
votes
4answers
782 views
Why does this Haskell code work successfully with infinite lists?
I have some Haskell code that does work correctly on an infinite list, but I do not understand why it can do so successfully. (I modified my original code -- that did not handle infinite lists -- to ...