idFx
trait Fx[Id]
trait CanRecover[Id]
trait CanHandleError[Id]
trait CanCatch[Id]
trait FxCtor[Id]
class Object
trait Matchable
class Any
Value members
Concrete methods
@inline
final override def handleNonFatalWith[A, AA >: A](fa: => Id[A])(handleError: Throwable => Id[AA]): Id[AA]
- Definition Classes
- CanHandleError
@inline
final override def recoverFromNonFatal[A, AA >: A](fa: => Id[A])(handleError: PartialFunction[Throwable, AA]): Id[AA]
- Definition Classes
- CanRecover
@inline
final override def recoverFromNonFatalWith[A, AA >: A](fa: => Id[A])(handleError: PartialFunction[Throwable, Id[AA]]): Id[AA]
- Definition Classes
- CanRecover
Inherited methods
@inline
final def catchNonFatalEither[A, AA >: A, B](fab: => Id[Either[A, B]])(f: Throwable => AA): Id[Either[AA, B]]
- Inherited from
- CanCatch
@inline
final def handleEitherNonFatal[A, AA >: A, B, BB >: B](fab: => Id[Either[A, B]])(handleError: Throwable => Either[AA, BB]): Id[Either[AA, BB]]
- Inherited from
- CanHandleError
@inline
final def handleEitherNonFatalWith[A, AA >: A, B, BB >: B](fab: => Id[Either[A, B]])(handleError: Throwable => Id[Either[AA, BB]]): Id[Either[AA, BB]]
- Inherited from
- CanHandleError
@inline
final def recoverEitherFromNonFatal[A, AA >: A, B, BB >: B](fab: => Id[Either[A, B]])(handleError: PartialFunction[Throwable, Either[AA, BB]]): Id[Either[AA, BB]]
- Inherited from
- CanRecover
@inline
final def recoverEitherFromNonFatalWith[A, AA >: A, B, BB >: B](fab: => Id[Either[A, B]])(handleError: PartialFunction[Throwable, Id[Either[AA, BB]]]): Id[Either[AA, BB]]
- Inherited from
- CanRecover