| Package | Description |
|---|---|
| com.annimon.stream | |
| com.annimon.stream.function |
| Modifier and Type | Method and Description |
|---|---|
<R> R |
Stream.reduceIndexed(int from,
int step,
R identity,
IndexedBiFunction<? super R,? super T,? extends R> accumulator)
Reduces the elements using provided identity value and
the associative accumulation indexed function.
|
<R> R |
Stream.reduceIndexed(R identity,
IndexedBiFunction<? super R,? super T,? extends R> accumulator)
Reduces the elements using provided identity value and
the associative accumulation indexed function.
|
| Modifier and Type | Method and Description |
|---|---|
static <T,U,R> IndexedBiFunction<T,U,R> |
IndexedBiFunction.Util.wrap(BiFunction<? super T,? super U,? extends R> function)
Wraps
BiFunction and returns IndexedBiFunction. |
Copyright © 2017. All rights reserved.