Skip to content

Commit

Permalink
[#16] Joining collector: package-info update; CHANGES.md
Browse files Browse the repository at this point in the history
  • Loading branch information
amaembo committed Nov 8, 2015
1 parent 7286df5 commit ae3537c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@

* Added: `StreamEx/IntStreamEx/LongStreamEx/DoubleStreamEx.mapLast/mapFirst` methods.
* Added: `MoreCollectors.flatMapping` collector.
* Added: `Joining` collector: an advanced version of `Collectors.joining` which may short-circuit.
* Fixed: `StreamEx.cross(mapper)` now correctly handles the case when mapper returns null instead of empty stream.
* Optimized: ordered stateful short-circuit collectors now may process less elements in parallel.
* Optimized: `StreamEx/EntryStream.toList()/toListAndThen()/foldRight()/scanRight()` now faster, especially for sized stream.
Expand Down
3 changes: 3 additions & 0 deletions src/main/java/javax/util/streamex/package-info.java
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,9 @@
* {@link javax.util.streamex.MoreCollectors}: utility class which provides a number of useful collectors
* which are absent in JDK {@link java.util.stream.Collectors} class.
*
* <p>
* {@link javax.util.streamex.Joining}: an advanced implementation of joining collector.
*
* <h2><a name="StreamOps">Stream operations and pipelines</a></h2>
* <p>StreamEx operations are divided into <em>intermediate</em>, <em>quasi-intermediate</em> and
* <em>terminal</em> operations, and are combined to form <em>stream
Expand Down

0 comments on commit ae3537c

Please sign in to comment.