B - The type of data processed by an input processC - The type of data processed by the transduced processpublic interface ITransducer<B,C>
| Modifier and Type | Method and Description |
|---|---|
<R> IReducingFunction<R,C> |
apply(IReducingFunction<R,? super B> rf)
Transforms a reducing function of B into a reducing function
of C.
|
<A> ITransducer<A,C> |
comp(ITransducer<A,? super B> right)
Composes a transducer with another transducer, yielding
a new transducer.
|
<R> IReducingFunction<R,C> apply(IReducingFunction<R,? super B> rf)
R - The result type of both the input and the output
reducing functionsrf - The input reducing function<A> ITransducer<A,C> comp(ITransducer<A,? super B> right)
A - the type of input processed by the reducing function
the composed transducer returns when appliedright - the transducer to compose with this transducerCopyright © 2014. All rights reserved.