Tagged Questions
In functional programming, fold, also known variously as reduce, accumulate, compress, or inject, is a family of higher-order functions that iterate a function over a data structure to produce a summary value.
29
votes
9answers
4k views
Implications of foldr vs. foldl (or foldl')
Firstly, Real World Haskell, which I am reading, says to never use foldl instead of foldl'. So I trust it.
But I'm hazy on when to use foldr vs. foldl'. Though I can see the structure of how they ...
18
votes
2answers
980 views
Writing foldl using foldr
In the RealWorldHaskell, Chapter 4. Functional Programming
Write foldl with foldr:
-- file: ch04/Fold.hs
myFoldl :: (a -> b -> a) -> a -> [b] -> a
myFoldl f z xs = foldr step id xs z
...
17
votes
2answers
339 views
Folding, function composition, monads, and laziness, oh my?
I am puzzled. I can write this:
import Control.Monad
main = print $ head $ (foldr (.) id [f, g]) [3]
where f = (1:)
g = undefined
and the output is 1. That makes sense, because it ...
16
votes
3answers
8k views
functional programming scala map and fold left
Hi can someone tell me some good tutorials on fold left and map
14
votes
2answers
390 views
Is foldl ever preferable to its strict cousin, foldl'?
Haskell has two left fold functions for lists: foldl, and a "strict" version, foldl'. The problem with the non-strict foldl is that it builds a tower of thunks:
foldl (+) 0 [1..5]
--> ((((0 + ...
14
votes
4answers
498 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 ...
14
votes
4answers
764 views
foldl versus foldr behavior with infinite lists
The code for the myAny function in this question uses foldr. It stops processing an infinite list when the predicate is satisfied.
I rewrote it using foldl:
myAny :: (a -> Bool) -> [a] -> Bool
...
13
votes
4answers
381 views
Can't perform I/O in foldr?
I have a Data.Map structure that maps Strings to Stringss. For whatever reason, I want to print the contents of the map in the format key: value using foldrWithKey, like so:
M.foldrWithKey (\k v b ...
13
votes
4answers
763 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 ...
12
votes
4answers
574 views
Difference between fold and foldLeft or foldRight?
Why can't I use the fold function the same way as foldLeft or foldRight?
In the Set scaladoc it says that:
The result of folding may only be a
supertype of this parallel
collection's type ...
12
votes
3answers
651 views
Why doesn't Option have a fold method?
I wonder why scala.Option doesn't have a method fold like this defined:
fold(ifSome: A => B , ifNone: => B)
equivalent to
map(ifSome).getOrElse(ifNone)
Is there no better than using map + ...
11
votes
3answers
390 views
Scala Vector fold syntax (/: and :\ and /:\)
Can someone provide some examples for how
/: :\ and /:\
Actually get used? I assume they're shortcuts to the reduce / fold methods, but there's no examples on how they actually get used in the ...
10
votes
7answers
723 views
Idiomatic construction to check whether a collection is ordered
With the intention of learning and further to this question, I've remained curious of the idiomatic alternatives to explicit recursion for an algorithm that checks whether a list (or collection) is ...
9
votes
5answers
1k views
haskell - foldl vs foldr question
I wanted to test foldl vs foldr. From what I've seen you should use foldl over foldr when ever you can due to tail reccursion optimization.
This makes sense. However, after running this test I am ...
9
votes
4answers
607 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 "universal". I am ...
8
votes
3answers
151 views
Difference between fold and reduce?
Trying to learn F# but got confused when trying to distinguish between fold and reduce. Fold seems to do the same thing but takes an extra parameter. Is there a legitimate reason for these two ...
8
votes
4answers
234 views
Why is foldl defined in a strange way in Racket?
In Haskell, like in many other functional languages, the function foldl is defined such that, for example, foldl (-) 0 [1,2,3,4] = -10.
This is OK, because foldl (-) 0 [1, 2,3,4] is, by definition, ...
8
votes
3answers
251 views
Is it possible to use continuations to make foldRight tail recursive?
The following blog article shows how in F# foldBack can be made tail recursive using continuation passing style.
In Scala this would mean that:
def foldBack[T,U](l: List[T], acc: U)(f: (T, U) => ...
8
votes
1answer
156 views
foldRight on infinite lazy structure
According to http://en.wikipedia.org/wiki/Fold_(higher-order_function), a right fold can operate on infinite lists if the full list does not have to be evaluated. This can be seen in action in ...
8
votes
4answers
337 views
How is foldl lazy?
There are lots of good questions and answers about foldl, foldr, and foldl' in Haskell.
So now I know that:
1) foldl is lazy
2) don't use foldl because it can blow up the stack
3) use foldl' ...
8
votes
5answers
215 views
foldl / foldr query
I'm a beginner at Haskell, and even after reading several explanations of foldr/foldl, I can't understand why I'm getting different results below. What is the explanation?
Prelude> foldl (\_ -> ...
8
votes
2answers
509 views
“unfold” for common lisp?
I learned quite a bit of scheme from SICP but am more interested in common lisp now. I know common lisp's fold is reduce, with special arguments for left or right folding, but what is the equivalent ...
7
votes
3answers
147 views
Is there any intermediate data structure created in list comprehensions
It seems like foldr does some kind of fusion with list comprehension, thus it requires less memory (11mb) allocation compared tofoldl (21mb) in this e.g.
myfunc = sum $ foldr g acc [ f x | x <- xs ...
7
votes
1answer
359 views
Recursive bottom-up traversal of algebraic data types
When dealing with sizeable algebraic data types in Haskell, there is a particular recursive traversal not captured by folding over the data type. For instance, suppose I have a simple data type ...
7
votes
3answers
540 views
How to fold STL container
I need analog of Haskell's foldl function to fold any STL containers. Expected signature is like following:
template Iterator, FoldingFunction, Result
Result foldl(
Iterator begin,
Iterator end, ...
7
votes
6answers
696 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 these executions, any ...
7
votes
4answers
474 views
Why does this first Haskell function FAIL to handle infinite lists, while this second snippet SUCCEEDS with infinite lists?
I have two Haskell functions, both of which seem very similar to me. But the first one FAILS against infinite lists, and the second one SUCCEEDS against infinite lists. I have been trying for hours to ...
6
votes
2answers
153 views
Optimisations with folds
I am just curious if there are any (first order polymorphic only) optimisations with folds.
For maps, there's deforestation: map g (map f ls) => map (g . f) ls, and rev (map f ls) => rev_map f ...
6
votes
4answers
738 views
Code folding is not saved in my vimrc
I added the following code to my .vimrc:
" save and restore folds when a file is closed and re-opened
autocmd BufWinLeave *.* mkview
autocmd BufWinEnter *.* silent loadview
HTML and CSS documents ...
5
votes
4answers
356 views
How can I check if a BST is valid?
How can I check if a BST is a valid one, given its definition and using a generalized version of fold for BST?
data(Ord a, Show a, Read a) => BST a = Void | Node {
val :: a,
left, right ...
4
votes
2answers
290 views
Scala - reduce/foldLeft
I have a nested map m which is like:
m = Map("email" -> "a@b.com", "background" -> Map("language" -> "english"))
I have an array arr = Array("background","language")
How do I ...
4
votes
6answers
440 views
Practical use of fold/reduce in functional languages
Fold (aka reduce) is considered a very important higher order function. Map can be expressed in terms of fold (see here). But it sounds more academical than practical to me. A typical use could be to ...
4
votes
4answers
243 views
How many arguments takes the foldr function of Haskell?
I am new to Haskell and I am reading the book "Real World Haskell". In the Chapter 4 of the book the author asks as an exercise to rewrite the groupBy function using fold. One of the readers of the ...
4
votes
3answers
192 views
Am I using sound equational reasoning about a definition of filter in terms of foldr?
well, this is the definition of the filter function using foldr:
myFilter p xs = foldr step [] xs
where step x ys | p x = x : ys
| otherwise = ys
so for example ...
4
votes
2answers
1k views
C stack overflow on Project Euler 27
I just have started to learn Haskell and combine reading books and tutorials with solving problems from Project Euler. I have stuck on Problem 27 because I get "C stack overflow" error using this ...
3
votes
1answer
125 views
Does Haskell have foldlM'?
How does one fold over a monad strictly? Data.Foldable has the strict foldl' and the monadic foldlM, but no strict foldlM'? Is the strictness somehow defined by the monad itself? If so, how does ...
3
votes
2answers
95 views
Easy way to break foldl
I need to break from foldl. Here is a dummy example how to break from fold when I count sum of values in a list and meet too big value (i.e. 10)
L = [1,2,3,4,10,5,6,7],
Res =
try
...
3
votes
4answers
190 views
How to fold left a list of BigDecimal? (“overloaded method + cannot be applied”)
I want to write a short functional sum-function for a List of BigDecimal and tried with:
def sum(xs: List[BigDecimal]): BigDecimal = (0 /: xs) (_ + _)
But I got this error message:
...
3
votes
3answers
214 views
Why is [1..n] not handled the same way as [n..1] in Haskell?
I was trying to solve a problem that required the maximum value of a list after being mapped over by a function. The list is a range from a to b where a>b or b>a. Because Haskell can also define ...
3
votes
2answers
129 views
Excluding computed results from a map of [1..]?
I'm currently working on a program which computes amicable pairs (Project Euler 21). I've already found the solution, however I noticed that a flaw in my program was that it evaluates all of the ...
3
votes
1answer
144 views
3
votes
3answers
281 views
Erlang: is it possible to write the minimum function as a list fold?
Given a function:
min(A, B) when A =< B -> A;
min(_A, B) -> B.
can I use this in the function foldlin a similar fashion to this:
lists:foldl(fun min/2, 0, ...
3
votes
4answers
501 views
Haskell - Foldr and Foldl further explanation and example
I've looked at http://www.haskell.org/haskellwiki/Foldr_Foldl_Foldl%27
and http://haskell.org/haskellwiki/Fold as well as a few others and they explain it fairly well.
I'm still having trouble on how ...
3
votes
4answers
1k views
What's your favorite folding method (or secret techique) in Vim for HTML, Javascript and CSS?
I use something like this: 1,40 fo but I think is not the most efficient way.
What's yours?
3
votes
3answers
276 views
Where do theses values come from in this haskell function?
Let's say I have the following function:
sumAll :: [(Int,Int)] -> Int
sumAll xs = foldr (+) 0 (map f xs)
where f (x,y) = x+y
The result of sumAll [(1,1),(2,2),(3,3)] will be 12.
What I don't ...
2
votes
1answer
74 views
Scala: avoiding cast to type parameter in foldLeft
Consider this snippet defining a trait for the state of a simulation, which a user is expected to implement in some derived type. On the trait, a collection of utility methods should be able to ...
2
votes
2answers
304 views
Map, Filter, Foldr in DrRacket/Scheme
Programming language: scheme/DrRacket
Hey everyone,
We're currently going over map, filter, and foldr in my comp sci class. I understand that all three can be used to create abstract functions, but ...
2
votes
1answer
169 views
reversing a list in OCaml using fold_left/right
UPDATE - Solution
Thanks to jacobm for his help, I came up with a solution.
// Folding Recursion
let reverse_list_3 theList =
List.fold_left (fun element recursive_call -> ...
2
votes
2answers
100 views
Why does fold have the following type in Scala?
I was looking at the way fold is defined for immutable.Set:
def fold [A1 >: A] (z: A1)(op: (A1, A1) ⇒ A1): A1
yet foldLeft is defined as:
def foldLeft [B] (z: B)(op: (B, A) ⇒ B): B
This ...
2
votes
2answers
125 views
Why Map.make.fold more like List.fold_right (which is non-tail-recursive)?
Question naive on Ocaml's fold: Could you explain why Map.make.fold is designed more like List.fold_right instead of List.fold_left, noting that List. fold_right is not tail_recursive? There should ...