Skip to content

Instantly share code, notes, and snippets.

@chrisphelps
Created January 2, 2016 19:23
Show Gist options
  • Save chrisphelps/98ecd5fe4fc6887d07e2 to your computer and use it in GitHub Desktop.
Save chrisphelps/98ecd5fe4fc6887d07e2 to your computer and use it in GitHub Desktop.
For-comprehension with map
for {
config <- configServiceResponse
user <- userServiceResponse
prefs <- getPreferencesForUser(user, config)
items <- getItemsForUser(user).map{ item => personalizeItem(item, prefs) }
} yield format(items)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment