MCPcopy Index your code
hub / github.com/BruceEckel/OnJava8-Examples / main

Method main

streams/SortedComparator.java:8–16  ·  view source on GitHub ↗
(String[] args)

Source from the content-addressed store, hash-verified

6
7public class SortedComparator {
8 public static void
9 main(String[] args) throws Exception {
10 FileToWords.stream("Cheese.dat")
11 .skip(10)
12 .limit(10)
13 .sorted(Comparator.reverseOrder())
14 .map(w -> w + " ")
15 .forEach(System.out::print);
16 }
17}
18/* Output:
19you what to the that sir leads in district And

Callers

nothing calls this directly

Calls 1

streamMethod · 0.95

Tested by

no test coverage detected