Free

libretto.ExecutionParams.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

case class Ext[Q[_], A](value: Q[A]) extends Free[Q, A]

Attributes

Supertypes
trait Serializable
trait Product
trait Equals
trait Free[Q, A]
class Object
trait Matchable
class Any
Show all
case class One[Q[_]]() extends Free[Q, Unit]

Attributes

Supertypes
trait Serializable
trait Product
trait Equals
trait Free[Q, Unit]
class Object
trait Matchable
class Any
Show all
case class Zip[Q[_], A, B](a: Free[Q, A], b: Free[Q, B]) extends Free[Q, (A, B)]

Attributes

Supertypes
trait Serializable
trait Product
trait Equals
trait Free[Q, (A, B)]
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

Value members

Concrete methods

def pair[Q[_], A, B](a: Free[Q, A], b: Free[Q, B]): Free[Q, (A, B)]
def unit[Q[_]]: Free[Q, Unit]
def wrap[Q[_], A](qa: Q[A]): Free[Q, A]