| Package | Description |
|---|---|
| com.annimon.stream | |
| com.annimon.stream.function |
| Modifier and Type | Method and Description |
|---|---|
Optional<T> |
Stream.reduce(BiFunction<T,T,T> accumulator)
Reduces the elements using provided associative accumulation function.
|
T |
Stream.reduce(T identity,
BiFunction<T,T,T> accumulator)
Reduces the elements using provided identity value and the associative accumulation function.
|
| Modifier and Type | Interface and Description |
|---|---|
interface |
BinaryOperator<T>
Operation on a single operand that produces a result of the
same type as its operand.
|
| Modifier and Type | Method and Description |
|---|---|
static <T,U,R,V> BiFunction<T,U,V> |
BiFunction.Util.andThen(BiFunction<? super T,? super U,? extends R> f1,
Function<? super R,? extends V> f2)
Compose
BiFunction calls. |
| Modifier and Type | Method and Description |
|---|---|
static <T,U,R,V> BiFunction<T,U,V> |
BiFunction.Util.andThen(BiFunction<? super T,? super U,? extends R> f1,
Function<? super R,? extends V> f2)
Compose
BiFunction calls. |
Copyright © 2015. All rights reserved.