Skip to content

Instantly share code, notes, and snippets.

@motlin
Created May 15, 2018 21:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save motlin/b415013b5e3f6889da5b36bd9c4cf76c to your computer and use it in GitHub Desktop.
Save motlin/b415013b5e3f6889da5b36bd9c4cf76c to your computer and use it in GitHub Desktop.
MutableSet<Person> people = ...;
MutableSet<Address> addresses = people
.asLazy()
.collect(Person::getAddress)
.toSet();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment