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