Created
July 18, 2020 20:31
-
-
Save theboreddev/c94606fa2fd6424dcdd617eb9fb42057 to your computer and use it in GitHub Desktop.
groupBySexAndAge
groupBySexAndAge
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
final Map<Employee.Sex, Map<Integer, List<Employee>>> groupBySexAndAge = employees.stream() | |
.collect(groupingBy(Employee::getSex, groupingBy(Employee::getAge))); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment