TryFunctions

class Object
trait Matchable
class Any
object `try`

Value members

Concrete methods

def cata[A, B](t: Try[A])(success: A => B, failure: Throwable => B): B
def fromDisjunction[T <: Throwable, A](d: T \/ A): Try[A]
def fromValidation[T <: Throwable, A](v: Validation[T, A]): Try[A]
def toDisjunction[A](t: Try[A]): Throwable \/ A
def toValidation[A](t: Try[A]): Validation[Throwable, A]
def toValidationNel[A](t: Try[A]): ValidationNel[Throwable, A]