Skip to content

Instantly share code, notes, and snippets.

@adam-arold
Created September 11, 2017 16:39
Show Gist options
  • Save adam-arold/71b953cf1610fcd80584d738e8025cd1 to your computer and use it in GitHub Desktop.
Save adam-arold/71b953cf1610fcd80584d738e8025cd1 to your computer and use it in GitHub Desktop.
JavaUser
public class JavaUser {
// ...
public static Set<String> fetchCitiesOfUsers(
List<JavaUser> users) {
return users.stream()
.flatMap(user -> user.addresses.stream())
.map(JavaUser.Address::getCity)
.collect(Collectors.toSet());
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment