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/ |
D | CollectorsTest.java | 59 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…
|
D | TabulatorsTest.java | 53 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/ |
D | Collectors.java | 593 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/ |
D | CollectorsTest.java | 57 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/ |
D | Collectors.annotated.java | 55 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/ |
D | current.txt | 18195 …method public static <T, A, R, RR> java.util.stream.Collector<T,A,RR> collectingAndThen(java.util.…
|