trait StepModule extends AnyRef
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- StepModule
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- All
Type Members
- abstract type Step[+S, +A0]
Abstract Value Members
- abstract def bimap[S, S1, A, B](s: Step[S, A])(f: (S) => S1, g: (A) => B): Step[S1, B]
- abstract def both[S1, S2](s1: Step[S1, Nothing], s2: Step[S2, Nothing]): Step[(S1, S2), Nothing]
- abstract def cont[S, A0](s: Step[S, A0]): Boolean
- abstract def done[S, A0](s: S, a0: Chunk[A0]): Step[S, A0]
- abstract def either[S1, A0](s1: Step[S1, A0], s2: Step[S1, A0]): Step[S1, A0]
- abstract def leftMap[S, A0, B](s: Step[S, A0])(f: (S) => B): Step[B, A0]
- abstract def leftover[S, A0](s: Step[S, A0]): Chunk[A0]
- abstract def map[S, A0, B](s: Step[S, A0])(f: (A0) => B): Step[S, B]
- abstract def more[S](s: S): Step[S, Nothing]
- abstract def state[S, A0](s: Step[S, A0]): S
Concrete Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##(): Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def clone(): AnyRef
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native()
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- def finalize(): Unit
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable])
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toString(): String
- Definition Classes
- AnyRef → Any
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()