Home
last modified time | relevance | path

Searched refs:collectingAndThen (Results 1 – 6 of 6) sorted by relevance

/libcore/ojluni/src/test/java/util/stream/test/org/openjdk/tests/java/util/stream/
DCollectorsTest.java59 import static java.util.stream.Collectors.collectingAndThen;
763 …List<Integer> asImmutableList = exerciseTerminalOps(data, s -> s.collect(collectingAndThen(toList(…
776 …Collector<Integer, ?, Integer> min = collectingAndThen(Collectors.<Integer>minBy(Comparator.natura…
778 …Collector<Integer, ?, Integer> max = collectingAndThen(Collectors.<Integer>maxBy(Comparator.natura…
DTabulatorsTest.java53 import static java.util.stream.Collectors.collectingAndThen;
610 …ableList = exerciseTerminalOps(data, s -> (List<Integer>) s.collect(collectingAndThen(toList(), Co…
/libcore/ojluni/src/main/java/java/util/stream/
DCollectors.java593 public static<T,A,R,RR> Collector<T,A,RR> collectingAndThen(Collector<T,A,R> downstream,
1515 return collectingAndThen(
1623 return collectingAndThen(
/libcore/ojluni/src/test/java/util/stream/Collectors/
DCollectorsTest.java57 import static java.util.stream.Collectors.collectingAndThen;
746 …List<Integer> asImmutableList = exerciseTerminalOps(data, s -> s.collect(collectingAndThen(toList(…
/libcore/ojluni/annotations/flagged_api/java/util/stream/
DCollectors.annotated.java55 public static <T, A, R, RR> java.util.stream.Collector<T,A,RR> collectingAndThen(java.util.stream.C… in collectingAndThen() method in Collectors
/libcore/api/
Dcurrent.txt18195 …method public static <T, A, R, RR> java.util.stream.Collector<T,A,RR> collectingAndThen(java.util.…