eduction

functionsince v0.0-2371 clojure.core/eductionEdit
(eduction xform* coll)

Source docstring:
Returns a reducible/iterable application of the transducers
to the items in coll. Transducers are applied in order as if
combined with comp. Note that these applications will be
performed every time reduce/iterator is called.
Source code @ clojurescript:src/main/cljs/cljs/core.cljs
(defn eduction
  {:arglists '([xform* coll])}
  [& xforms]
  (Eduction. (apply comp (butlast xforms)) (last xforms)))