TryUtils

object TryUtils
class Object
trait Matchable
class Any

Value members

Concrete methods

def combineAll[A, B](xs: Seq[A], current: B, comb: (A, B) => Try[Seq[B]]): Try[Seq[B]]
def filterSuccess[A](xs: Seq[Try[A]]): Try[Seq[A]]

The following code has been taken from this answer: http://stackoverflow.com/questions/15495678/flatten-scala-try There may be more effcient solutions (but probably less elegant)

The following code has been taken from this answer: http://stackoverflow.com/questions/15495678/flatten-scala-try There may be more effcient solutions (but probably less elegant)