com.clarifi.machines

Stop

object Stop extends Plan[Nothing, Nothing, Nothing] with Product with Serializable

Terminates the plan with a machine that accepts no input and emits no output.

Linear Supertypes
Serializable, Serializable, Product, Equals, Plan[Nothing, Nothing, Nothing], AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. Stop
  2. Serializable
  3. Serializable
  4. Product
  5. Equals
  6. Plan
  7. AnyRef
  8. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Value Members

  1. final def !=(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  4. def >>[L >: Nothing, P >: Nothing, B](next: ⇒ Plan[L, P, B]): Plan[L, P, B]

    Sequential composition of Plans.

    Sequential composition of Plans.

    Definition Classes
    Plan
  5. final def andThen[P](p: Process[Nothing, P]): Plan[Nothing, P, Nothing]

    Connect the output of the machine to the given Process.

    Connect the output of the machine to the given Process.

    Definition Classes
    Plan
  6. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  7. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  8. def compile: Machine[Nothing, Nothing]

    A Machine that executes the Plan and then stops.

    A Machine that executes the Plan and then stops.

    Definition Classes
    Plan
  9. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  10. def equals(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  11. def filter(f: (Nothing) ⇒ Boolean): Plan[Nothing, Nothing, Nothing]

    Definition Classes
    Plan
  12. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  13. def flatMap[L, P, B](f: (Nothing) ⇒ Plan[L, P, B]): Stop.type

    Substitute into the variables in this Plan.

    Substitute into the variables in this Plan.

    Definition Classes
    StopPlan
  14. def foldLeft[R](acc: R)(f: (R, Nothing) ⇒ R): R

    Accumulate the outputs of the machine, associating to the left.

    Accumulate the outputs of the machine, associating to the left.

    Definition Classes
    Plan
  15. def foldMap[B](f: (Nothing) ⇒ B)(implicit M: Monoid[B]): B

    Accumulate the outputs of the machine in a Monoid.

    Accumulate the outputs of the machine in a Monoid.

    Definition Classes
    Plan
  16. def foldRight[R](z: ⇒ R)(f: (Nothing, ⇒ R) ⇒ R): R

    Accumulate the outputs of the machine, associating to the right.

    Accumulate the outputs of the machine, associating to the right.

    Definition Classes
    Plan
  17. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  18. def inmap[L](p: (Nothing) ⇒ L): Plan[L, Nothing, Nothing]

    Transform the inputs of the resulting machine.

    Transform the inputs of the resulting machine.

    Definition Classes
    Plan
  19. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  20. def iterate[L >: Nothing, P >: Nothing, B >: Nothing](h: (B) ⇒ Plan[L, P, B]): Machine[L, P]

    Corecursively build a machine by iterating the given function.

    Corecursively build a machine by iterating the given function.

    Definition Classes
    Plan
  21. def map[B](f: (Nothing) ⇒ B): Plan[Nothing, Nothing, B]

    Reassign the variables in this Plan.

    Reassign the variables in this Plan.

    Definition Classes
    Plan
  22. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  23. final def notify(): Unit

    Definition Classes
    AnyRef
  24. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  25. def orElse[L, P, B](p: ⇒ Plan[L, P, B]): Plan[L, P, B]

    If the current Plan fails, try the plan p.

    If the current Plan fails, try the plan p.

    Definition Classes
    StopPlan
  26. def outmap[P](f: (Nothing) ⇒ P): Plan[Nothing, P, Nothing]

    Transform the outputs of the resulting machine.

    Transform the outputs of the resulting machine.

    Definition Classes
    Plan
  27. def repeatedly: Machine[Nothing, Nothing]

    A Machine that executes the Plan indefinitely.

    A Machine that executes the Plan indefinitely.

    Definition Classes
    Plan
  28. def replicateM_(n: Int): Plan[Nothing, Nothing, Unit]

    Repeat this plan n times.

    Repeat this plan n times.

    Definition Classes
    Plan
  29. def sink[P, Q >: Nothing](m: Moore[Q, P]): Moore[Q, P]

    Definition Classes
    Plan
  30. def split[P](y: Process[Nothing, P]): Plan[Nothing, \/[Nothing, P], Nothing]

    Split the output into two streams at possibly differing rates.

    Split the output into two streams at possibly differing rates.

    Definition Classes
    Plan
  31. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  32. final def wait(): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  33. final def wait(arg0: Long, arg1: Int): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  34. final def wait(arg0: Long): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  35. def withFilter(f: (Nothing) ⇒ Boolean): Plan[Nothing, Nothing, Nothing]

    Definition Classes
    Plan

Inherited from Serializable

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from Plan[Nothing, Nothing, Nothing]

Inherited from AnyRef

Inherited from Any

Ungrouped