6
votes
3answers
357 views
Please explain in the simplest, most jargon-free English possible, the “universal property of fold”?
I am working through "Real World Haskell", which led to to a free PDF called "A tutorial on the universality and expressiveness of fold". It makes the point that a "fold" is "unive …
4
votes
6answers
158 views
How foldr works
Can anybody explain how foldr works?
Take these examples:
Prelude> foldr (-) 54 [10,11]
53
Prelude> foldr (\x y -> (x+y)/2) 54 [12,4,10,6]
12.0
I am confused about the …
1
vote
4answers
196 views
Is this a correct way of writing the Haskell foldr function?
I was doing the exercises from YAHT's Recursive Datatype section, and found writing the listFoldr function a bit challenging (mainly because I didn't really understand the differen …
