Last active
November 9, 2017 02:28
-
-
Save mcupak/c627756fe10904b1f053e707f49a4411 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| jshell> numbers.stream().filter(j -> j > 5).collect(Collectors.groupingBy(i -> i % 2, Collectors.counting())) | |
| $2 ==> {1=3} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment