Skip to content

Instantly share code, notes, and snippets.

Embed
What would you like to do?
groupBySexAndAge groupBySexAndAge
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