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

Method main

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

Source from the content-addressed store, hash-verified

6
7public class FileToWordsTest {
8 public static void
9 main(String[] args) throws Exception {
10 FileToWords.stream("Cheese.dat")
11 .limit(7)
12 .forEach(s -> System.out.format("%s ", s));
13 System.out.println();
14 FileToWords.stream("Cheese.dat")
15 .skip(7)
16 .limit(2)
17 .forEach(s -> System.out.format("%s ", s));
18 }
19}
20/* Output:
21Not much of a cheese shop really

Callers

nothing calls this directly

Calls 2

streamMethod · 0.95
formatMethod · 0.45

Tested by

no test coverage detected