Home
last modified time | relevance | path

Searched refs:finisher (Results 1 – 3 of 3) sorted by relevance

/libcore/ojluni/src/main/java/java/util/stream/
DCollector.java233 Function<A, R> finisher(); in finisher() method
294 Function<A, R> finisher, in of() argument
299 Objects.requireNonNull(finisher); in of()
307 return new Collectors.CollectorImpl<>(supplier, accumulator, combiner, finisher, cs); in of()
DCollectors.java151 private final Function<A, R> finisher; field in CollectorImpl
157 Function<A,R> finisher, in CollectorImpl() argument
162 this.finisher = finisher; in CollectorImpl()
189 public Function<A, R> finisher() { in finisher() method in CollectorImpl
190 return finisher; in finisher()
356 downstream.combiner(), downstream.finisher(),
379 Function<R,RR> finisher) {
393 downstream.finisher().andThen(finisher),
920 Function<A, A> downstreamFinisher = (Function<A, A>) downstream.finisher();
921 Function<Map<K, A>, M> finisher = intermediate -> {
[all …]
DReferencePipeline.java521 : collector.finisher().apply(container);