CanRecover

trait CanRecover[F[_]] extends CanRecover[F]
Authors

Kevin Lee

Since

2020-08-17

Companion
object
trait CanRecover[F]
class Object
trait Matchable
class Any

Type members

Types

type Xor[A, B] = Either[A, B]
type XorT[A, B] = EitherT[F, A, B]

Value members

Inherited methods

def recoverEitherTFromNonFatal[A, AA >: A, B, BB >: B](efab: => XorT[A, B])(handleError: PartialFunction[Throwable, Either[AA, BB]]): XorT[AA, BB]
Inherited from
CanRecover
def recoverEitherTFromNonFatalWith[A, AA >: A, B, BB >: B](efab: => XorT[A, B])(handleError: PartialFunction[Throwable, F[Either[AA, BB]]]): XorT[AA, BB]
Inherited from
CanRecover
def recoverFromNonFatal[A, AA >: A](fa: => F[A])(handleError: PartialFunction[Throwable, AA]): F[AA]
Inherited from
CanRecover
def recoverFromNonFatalWith[A, AA >: A](fa: => F[A])(handleError: PartialFunction[Throwable, F[AA]]): F[AA]
Inherited from
CanRecover