Action

object Action
Companion:
class
trait Sum
trait Mirror
class Object
trait Matchable
class Any
Action.type

Type members

Classlikes

case object Finish extends Action[Nothing, Nothing]
case class Fork[+From, +To](value: To, takeBack: From) extends Action[From, To]
case class ForkFinish[+From, +To](value: To, takeBack: From) extends Action[From, To]
case class Push[+To](value: To) extends Action[Nothing, To]
case class PushFinish[+To](value: To) extends Action[Nothing, To]
case class TakeBack[+From](value: From) extends Action[From, Nothing]
case class TakeBackFinish[+From](value: From) extends Action[From, Nothing]
case object TakeNext extends Action[Nothing, Nothing]

Inherited types

type MirroredElemLabels <: Tuple

The names of the product elements

The names of the product elements

Inherited from:
Mirror
type MirroredLabel <: String

The name of the type

The name of the type

Inherited from:
Mirror