TryOps

implicit
class TryOps[T](orig: Try[T])
class Object
trait Matchable
class Any

Value members

Concrete methods

def fold[U](ifFailure: Throwable => U)(ifSuccess: T => U): U
def recoverAll[U >: T](fix: Throwable => U): Try[U]
def recoverNonFatal[U >: T](fix: Throwable => U): Try[U]
def recoverWithAll[U >: T](fix: Throwable => Try[U]): Try[U]