File tree 1 file changed +4
-4
lines changed
src/java.base/share/classes/java/util/stream
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 43
43
* <p>The key abstraction introduced in this package is <em>stream</em>. The
44
44
* classes {@link java.util.stream.Stream}, {@link java.util.stream.IntStream},
45
45
* {@link java.util.stream.LongStream}, and {@link java.util.stream.DoubleStream}
46
- * are streams over objects and the primitive {@code int}, {@code long} and
46
+ * are streams over objects and the primitive {@code int}, {@code long}, and
47
47
* {@code double} types. Streams differ from collections in several ways:
48
48
*
49
49
* <ul>
176
176
* do:
177
177
*
178
178
* <pre>{@code
179
- * int sumOfWeights = widgets.<b> parallelStream()</b>
179
+ * int sumOfWeights = widgets.parallelStream()
180
180
* .filter(b -> b.getColor() == RED)
181
181
* .mapToInt(b -> b.getWeight())
182
182
* .sum();
242
242
* String s = sl.collect(joining(" "));
243
243
* }</pre>
244
244
*
245
- * First a list is created consisting of two strings: "one"; and "two". Then a
245
+ * First a list is created consisting of two strings: "one" and "two". Then a
246
246
* stream is created from that list. Next the list is modified by adding a third
247
247
* string: "three". Finally the elements of the stream are collected and joined
248
248
* together. Since the list was modified before the terminal {@code collect}
344
344
* parallelization:
345
345
*
346
346
* <pre>{@code
347
- * List<String>results =
347
+ * List<String> results =
348
348
* stream.filter(s -> pattern.matcher(s).matches())
349
349
* .collect(Collectors.toList()); // No side-effects!
350
350
* }</pre>
You can’t perform that action at this time.
0 commit comments