Searched defs:mapSupplier (Results 1 - 1 of 1) sorted by relevance

/libcore/ojluni/src/main/java/java/util/stream/
H A DCollectors.java1302 * @param mapSupplier a function which returns a new, empty {@code Map} into
1318 Supplier<M> mapSupplier) {
1322 return new CollectorImpl<>(mapSupplier, accumulator, mapMerger(mergeFunction), CH_ID);
1454 * @param mapSupplier a function which returns a new, empty {@code Map} into
1470 Supplier<M> mapSupplier) {
1474 return new CollectorImpl<>(mapSupplier, accumulator, mapMerger(mergeFunction), CH_CONCURRENT_ID);
1315 toMap(Function<? super T, ? extends K> keyMapper, Function<? super T, ? extends U> valueMapper, BinaryOperator<U> mergeFunction, Supplier<M> mapSupplier) argument
1467 toConcurrentMap(Function<? super T, ? extends K> keyMapper, Function<? super T, ? extends U> valueMapper, BinaryOperator<U> mergeFunction, Supplier<M> mapSupplier) argument

Completed in 6 milliseconds