| Constructor and Description | 
|---|
ConcatSequence(Sequence<? extends Sequence<? extends T>> baseSequences)  | 
| Modifier and Type | Method and Description | 
|---|---|
<OutType> OutType | 
accumulate(OutType initValue,
          Accumulator<OutType,T> accumulator)
Accumulate this sequence using the given accumulator. 
 | 
<OutType> Yielder<OutType> | 
makeYielder(Yielder<Sequence<T>> yielderYielder,
           OutType initValue,
           YieldingAccumulator<OutType,T> accumulator)  | 
<OutType> Yielder<OutType> | 
toYielder(OutType initValue,
         YieldingAccumulator<OutType,T> accumulator)
Return an Yielder for accumulated sequence. 
 | 
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitflatMap, flatMerge, map, withBaggage, withEffectpublic <OutType> OutType accumulate(OutType initValue,
                                    Accumulator<OutType,T> accumulator)
Sequenceaccumulate in interface Sequence<T>OutType - the type of accumulated value.initValue - the initial value to pass along to start the accumulation.accumulator - the accumulator which is responsible for accumulating input values.public <OutType> Yielder<OutType> toYielder(OutType initValue, YieldingAccumulator<OutType,T> accumulator)
SequencetoYielder in interface Sequence<T>OutType - the type of accumulated value.initValue - the initial value to pass along to start the accumulation.accumulator - the accumulator which is responsible for accumulating input values.YielderCopyright © 2011–2018. All rights reserved.