B - The type of data processed by an input processC - The type of data processed by the transduced processpublic abstract class ATransducer<B,C> extends Object implements ITransducer<B,C>
| Constructor and Description |
|---|
ATransducer() |
| Modifier and Type | Method and Description |
|---|---|
<A> ITransducer<A,C> |
comp(ITransducer<A,? super B> right)
Composes a transducer with another transducer, yielding
a new transducer.
|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitapplypublic <A> ITransducer<A,C> comp(ITransducer<A,? super B> right)
comp in interface ITransducer<B,C>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.