Home
last modified time | relevance | path

Searched refs:toCollection (Results 1 – 2 of 2) sorted by relevance

/libcore/ojluni/src/test/java/util/stream/test/org/openjdk/tests/java/util/stream/
DTabulatorsTest.java58 import static java.util.stream.Collectors.toCollection;
460 groupingBy(classifier, TreeMap::new, toCollection(HashSet::new)),
465 toCollection(HashSet::new)),
502 …ingBy(classifier, TreeMap::new, groupingBy(classifier2, TreeMap::new, toCollection(HashSet::new))),
/libcore/ojluni/src/main/java/java/util/stream/
DCollectors.java212 Collector<T, ?, C> toCollection(Supplier<C> collectionFactory) { in toCollection() method