| Modifier and Type | Interface and Description |
|---|---|
interface |
IReducingFunction<R,T>
A complete reducing function.
|
| Modifier and Type | Class and Description |
|---|---|
class |
AReducingFunction<R,T>
Abstract base class for implementing a reducing function.
|
class |
AReducingFunctionOn<R,A,B>
Abstract base class for implementing a reducing function that chains to
another reducing function.
|
| Modifier and Type | Method and Description |
|---|---|
static <R,T> IReducingFunction<R,? super T> |
Fns.completing(IStepFunction<R,? super T> sf)
Converts an step function into a complete reducing function.
|
static <R,A,B> R |
Fns.transduce(ITransducer<A,B> xf,
IStepFunction<R,? super A> rf,
R init,
Iterable<B> input)
Reduces input using transformed reducing function.
|
Copyright © 2014. All rights reserved.