Skip to content

Instantly share code, notes, and snippets.

@motlin
Created May 15, 2018 21:49
Show Gist options
  • Save motlin/069160391f61c6501639a52da9bfbe60 to your computer and use it in GitHub Desktop.
Save motlin/069160391f61c6501639a52da9bfbe60 to your computer and use it in GitHub Desktop.
Set<Person> people = ...;
Set<Address> addresses = people
.stream()
.map(Person::getAddress)
.collect(Collectors.toSet());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment