FreeMonad

cps.monads.FreeMonad
See theFreeMonad companion trait
object FreeMonad

Attributes

Companion
trait
Source
FreeCpsMonad.scala
Graph
Supertypes
trait Sum
trait Mirror
class Object
trait Matchable
class Any
Self type
FreeMonad.type

Members list

Type members

Classlikes

case class Error(e: Throwable) extends FreeMonad[Nothing]

Attributes

Source
FreeCpsMonad.scala
Supertypes
trait Serializable
trait Product
trait Equals
trait FreeMonad[Nothing]
class Object
trait Matchable
class Any
Show all
case class FlatMap[A, B](fa: FreeMonad[A], f: A => FreeMonad[B]) extends FreeMonad[B]

Attributes

Source
FreeCpsMonad.scala
Supertypes
trait Serializable
trait Product
trait Equals
trait FreeMonad[B]
class Object
trait Matchable
class Any
Show all
case class FlatMapTry[A, B](fa: FreeMonad[A], f: (Try[A]) => FreeMonad[B]) extends FreeMonad[B]

Attributes

Source
FreeCpsMonad.scala
Supertypes
trait Serializable
trait Product
trait Equals
trait FreeMonad[B]
class Object
trait Matchable
class Any
Show all
case class Pure[A](a: A) extends FreeMonad[A]

Attributes

Source
FreeCpsMonad.scala
Supertypes
trait Serializable
trait Product
trait Equals
trait FreeMonad[A]
class Object
trait Matchable
class Any
Show all

Inherited types

type MirroredElemLabels <: Tuple

The names of the product elements

The names of the product elements

Attributes

Inherited from:
Mirror
type MirroredLabel <: String

The name of the type

The name of the type

Attributes

Inherited from:
Mirror