sealed abstract
class
MonadCatchIOOps[F[_], A] extends Ops[F[A]]
Abstract Value Members
-
implicit abstract
def
F: MonadCatchIO[F]
-
abstract
def
self: F[A]
Concrete Value Members
-
final
def
!=(arg0: Any): Boolean
-
final
def
##(): Int
-
final
def
==(arg0: Any): Boolean
-
final
def
asInstanceOf[T0]: T0
-
def
bracket[B, C](after: (A) ⇒ F[B])(during: (A) ⇒ F[C]): F[C]
-
def
bracketOnError[B, C](after: (A) ⇒ F[B])(during: (A) ⇒ F[C]): F[C]
-
def
bracket_[B, C](after: F[B])(during: F[C]): F[C]
-
def
catchLeft: F[\/[Throwable, A]]
-
def
catchSome[B](p: (Throwable) ⇒ Option[B], handler: (B) ⇒ F[A]): F[A]
-
def
catchSomeLeft[B](p: (Throwable) ⇒ Option[B]): F[\/[B, A]]
-
def
clone(): AnyRef
-
def
ensuring[B](sequel: F[B]): F[A]
-
-
-
def
except(handler: (Throwable) ⇒ F[A]): F[A]
-
def
finalize(): Unit
-
final
def
getClass(): Class[_]
-
def
hashCode(): Int
-
final
def
isInstanceOf[T0]: Boolean
-
-
final
def
notify(): Unit
-
final
def
notifyAll(): Unit
-
def
onException[B](action: F[B]): F[A]
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
-
def
toString(): String
-
def
using[B](f: (A) ⇒ F[B])(implicit resource: Resource[A]): F[B]
-
final
def
wait(): Unit
-
final
def
wait(arg0: Long, arg1: Int): Unit
-
final
def
wait(arg0: Long): Unit
Wraps a value
self
and provides methods related toMonadCatchIO