trait
MonadError_[F[_], E] extends AnyRef
Abstract Value Members
-
abstract
def
handleError[A](fa: F[A])(f: (E) ⇒ F[A]): F[A]
-
abstract
def
raiseError[A](e: E): F[A]
Concrete Value Members
-
final
def
!=(arg0: Any): Boolean
-
final
def
##(): Int
-
final
def
==(arg0: Any): Boolean
-
final
def
asInstanceOf[T0]: T0
-
def
attempt[A](fa: F[A])(implicit F: Applicative[F]): F[\/[E, A]]
-
def
clone(): AnyRef
-
def
ensuring[A](fa: F[A])(f: (slamdata.Predef.Option[E]) ⇒ F[slamdata.Predef.Unit])(implicit F: Monad[F]): F[A]
-
-
-
def
finalize(): Unit
-
final
def
getClass(): Class[_]
-
def
handle[A](fa: F[A])(pf: slamdata.Predef.PartialFunction[E, A])(implicit F: Applicative[F]): F[A]
-
def
handleWith[A](fa: F[A])(pf: slamdata.Predef.PartialFunction[E, F[A]]): F[A]
-
def
hashCode(): Int
-
final
def
isInstanceOf[T0]: Boolean
-
-
final
def
notify(): Unit
-
final
def
notifyAll(): Unit
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
-
def
toString(): String
-
def
unattempt[A](fa: F[\/[E, A]])(implicit F: Monad[F]): F[A]
-
final
def
wait(): Unit
-
final
def
wait(arg0: Long, arg1: Int): Unit
-
final
def
wait(arg0: Long): Unit
A version of MonadError that doesn't extend Monad to avoid ambiguous implicits in the presence of multiple "mtl" constraints.