Skip to content

Instantly share code, notes, and snippets.

@adam-arold
Created September 11, 2017 16:39
Show Gist options
  • Save adam-arold/09491cc6059659f270b2820f1a817cd6 to your computer and use it in GitHub Desktop.
Save adam-arold/09491cc6059659f270b2820f1a817cd6 to your computer and use it in GitHub Desktop.
fetchCitiesOfUsers
fun fetchCitiesOfUsers(users: List<KotlinUser>) = users
.flatMap(KotlinUser::addresses)
.map(Address::city)
.toSet()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment