Skip to content

Instantly share code, notes, and snippets.

Embed
What would you like to do?
groupBySexToSet
final Map<Employee.Sex, Set<Employee>> employeesBySex = employees.stream()
.collect(groupingBy(Employee::getSex, toSet()));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment