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