Skip to content

Instantly share code, notes, and snippets.

@yoshiyoshifujii
Created February 5, 2017 02:50
Show Gist options
  • Save yoshiyoshifujii/57a728ebc804a1ce310e575bd3e8f90b to your computer and use it in GitHub Desktop.
Save yoshiyoshifujii/57a728ebc804a1ce310e575bd3e8f90b to your computer and use it in GitHub Desktop.
def sequence[T](xs : Seq[Try[T]]) : Try[Seq[T]] = (Try(Seq[T]()) /: xs) {
(a, b) => a flatMap (c => b map (d => c :+ d))
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment