Free

org.finos.morphir.core.capabilities.free.Free
See theFree companion trait
object Free

Attributes

Companion
trait
Graph
Supertypes
trait Sum
trait Mirror
class Object
trait Matchable
class Any
Self type
Free.type

Members list

Type members

Classlikes

final case class Eval[F[_, _], E, A](fa: F[E, A]) extends Free[F, E, A]

Attributes

Supertypes
trait Serializable
trait Product
trait Equals
trait Free[F, E, A]
class Object
trait Matchable
class Any
Show all
trait Executable[F[_, _]]

Attributes

Supertypes
class Object
trait Matchable
class Any
final case class Fail[F[_, _], E](a: E) extends Free[F, E, Nothing]

Attributes

Supertypes
trait Serializable
trait Product
trait Equals
trait Free[F, E, Nothing]
class Object
trait Matchable
class Any
Show all
trait Interpreter[F[_, _], G[_, _]]

Attributes

Supertypes
class Object
trait Matchable
class Any
final case class Sequence[F[_, _], E1, E2, A1, A2] extends Free[F, E2, A2]

Attributes

Supertypes
trait Serializable
trait Product
trait Equals
trait Free[F, E2, A2]
class Object
trait Matchable
class Any
Show all
final case class Succeed[F[_, _], A](a: A) extends Free[F, Nothing, A]

Attributes

Supertypes
trait Serializable
trait Product
trait Equals
trait Free[F, Nothing, A]
class Object
trait Matchable
class Any
Show all
trait UnsafeInterpreter[F[_, _]]

Attributes

Supertypes
class Object
trait Matchable
class Any

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

Value members

Concrete methods

def eval[F[_, _], E, A](fa: F[E, A]): Free[F, E, A]
def fail[F[_, _], E](e: E): Free[F, E, Nothing]
def succeed[F[_, _], A](a: A): Free[F, Nothing, A]