Created
May 30, 2017 19:15
-
-
Save mudlee/1c882fabb6fb7102869e1d0ec361fe96 to your computer and use it in GitHub Desktop.
Java 8 Lambdas
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
batchedEntities.values() | |
.stream() | |
.map(BatchedEntities::getEntities) | |
.collect(Collectors.toList()) | |
.stream() | |
.flatMap(List::stream) | |
.collect(Collectors.toList()); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment