Monadic

jsonrpclib.Monadic
See theMonadic companion object
trait Monadic[F[_]]

Attributes

Companion
object
Graph
Supertypes
class Object
trait Matchable
class Any

Members list

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]