clojure.core.reducers/fold

functionsince v0.0-1236 clojure.core.reducers/foldEdit
(fold reducef coll)
(fold combinef reducef coll)
(fold n combinef reducef coll)

Source docstring:
Reduces a collection using a (potentially parallel) reduce-combine
strategy. The collection is partitioned into groups of approximately
n (default 512), each of which is reduced with reducef (with a seed
value obtained by calling (combinef) with no arguments). The results
of these reductions are then reduced with combinef (default
reducef). combinef must be associative, and, when called with no
arguments, (combinef) must produce its identity element. These
operations may be performed in parallel, but the results will
preserve order.

Note: Performing operations in parallel is currently not implemented.
Source code @ clojurescript:src/main/cljs/clojure/core/reducers.cljs
(defn fold
  ([reducef coll] (fold reducef reducef coll))
  ([combinef reducef coll] (fold 512 combinef reducef coll))
  ([n combinef reducef coll]
     (coll-fold coll n combinef reducef)))