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 get the sum, or product, or maximum of numbers, but these functions usually accept any number of arguments. So why write (fold + 0 '(2 3 5)) when (+ 2 3 5) works fine. My question is, in what situation is it easiest or most natural to use fold?
| |||
|
feedback
|
|
The point of Using a Since Basically, once you have the one version, you get the other "for free". Ultimately, you end up doing less work to get the same result. | |||
|
feedback
|
|
Here are a few simple examples where Find the sum of the maximum values of each sub-list Clojure:
Racket:
Construct a map from a list Clojure:
For a more complicated clojure example featuring See also: reduce vs. apply | ||||
|
feedback
|
| |||
|
feedback
|
|
Code using fold is usually awkward to read. That's why people prefer map, filter, exists, sum, and so on—when available. These days I'm primarily writing compilers and interpreters; here's some ways I use fold:
What all these uses have in common is that they're accumulating information about a sequence into some kind of set or dictionary. Eminently practical. | |||
|
feedback
|
|
Here's an example that nobody else mentioned yet. By using a function with a small, well-defined interface like "fold", you can replace that implementation without breaking the programs that use it. You could, for example, make a distributed version that runs on thousands of PCs, so a sorting algorithm that used it would become a distributed sort, and so on. Your programs become more robust, simpler, and faster. Your example is a trivial one: | |||
|
feedback
|
|
In Common Lisp functions don't accept any number of arguments. There is a constant defined in every Common Lisp implementation CALL-ARGUMENTS-LIMIT, which must be 50 or larger. This means that any such portably written function should accept at least 50 arguments. But it could be just 50. This limit exists to allow compilers to possibly use optimized calling schemes and to not provide the general case, where an unlimited number of arguments could be passed. Thus to really process large (larger than 50 elements) lists or vectors in portable Common Lisp code, it is necessary to use iteration constructs, reduce, map, and similar. Thus it is also necessary to not use | ||||
|
feedback
|
+didn't already accept more than 2 arguments, how would you implement a version that does? – Gabe Mar 16 '11 at 21:10foldis the building block for a lot of higher-level useful functions likemap. Your program is probably more likely to use those functions than a rawfold, but the fact that you can implement pretty much any functionality that consumes a list as some sort of fold makes it very important. – dfan Mar 16 '11 at 21:15