averageAgeBySex
final Map<Employee.Sex, Double> averageAgeBySex = employees.stream() | |
.collect(groupingBy(Employee::getSex, averagingInt(Employee::getAge))); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment