Monadic

trait Monadic[F[_]]
Companion:
object
class Object
trait Matchable
class Any

Value members

Abstract methods

def doAttempt[A](fa: F[A]): F[Either[Throwable, A]]
def doFlatMap[A, B](fa: F[A])(f: A => F[B]): F[B]
def doPure[A](a: A): F[A]
def doRaiseError[A](e: Throwable): F[A]