Package | Description |
---|---|
java.util | |
java.util.function | |
java.util.stream |
Modifier and Type | Method and Description |
---|---|
default V |
Map.compute(K key,
BiFunction<? super K,? super V,? extends V> remappingFunction) |
default V |
Map.computeIfPresent(K key,
BiFunction<? super K,? super V,? extends V> remappingFunction) |
default V |
Map.merge(K key,
V value,
BiFunction<? super V,? super V,? extends V> remappingFunction) |
default void |
Map.replaceAll(BiFunction<? super K,? super V,? extends V> function) |
Modifier and Type | Interface and Description |
---|---|
interface |
BinaryOperator<T>
See
the official Java API doc for details.
|
Modifier and Type | Method and Description |
---|---|
default <V> BiFunction<T,U,V> |
BiFunction.andThen(Function<? super R,? extends V> after) |
Modifier and Type | Method and Description |
---|---|
<U> U |
Stream.reduce(U identity,
BiFunction<U,? super T,U> accumulator,
BinaryOperator<U> combiner) |
Copyright © 2018. All rights reserved.