Skip to content

Instantly share code, notes, and snippets.

@kolov
Last active March 6, 2018 22:59
Show Gist options
  • Save kolov/8ae12c73e11c1657e15eeda9e69507c9 to your computer and use it in GitHub Desktop.
Save kolov/8ae12c73e11c1657e15eeda9e69507c9 to your computer and use it in GitHub Desktop.
def getAllDatesCats(products: List[String]) = {
val futureAllDates = Future.sequence(products.map(p ⇒ getDates(p)))
futureAllDates.map(l ⇒ l.combineAll.toOption)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment