Class/Object

scalaz.iteratee

StepT

Related Docs: object StepT | package iteratee

Permalink

sealed abstract class StepT[E, F[_], A] extends AnyRef

The current state of an Iteratee, one of:

E

The type of the input data (mnemonic: Element type)

F

The type constructor representing an effect. The type constructor scalaz.Id is used to model pure computations, and is fixed as such in the type alias scalaz.iteratee.Step.

A

The type of the calculated result

Source
StepT.scala
Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. StepT
  2. AnyRef
  3. Any
  1. Hide All
  2. Show all
Visibility
  1. Public
  2. All

Abstract Value Members

  1. abstract def fold[Z](cont: ((Input[E]) ⇒ IterateeT[E, F, A]) ⇒ Z, done: (⇒ A, ⇒ Input[E]) ⇒ Z): Z

    Permalink

Concrete Value Members

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

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

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

    Permalink
    Definition Classes
    AnyRef → Any
  4. def >-[Z](cont: ⇒ Z, done: ⇒ Z): Z

    Permalink
  5. def apply[Z](cont: ((Input[E]) ⇒ IterateeT[E, F, A]) ⇒ Z, done: (⇒ A, ⇒ Input[E]) ⇒ Z): Z

    Permalink

    An alias for fold

  6. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  7. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  8. def cont: Option[(Input[E]) ⇒ IterateeT[E, F, A]]

    Permalink
  9. def contOr(k: ⇒ (Input[E]) ⇒ IterateeT[E, F, A]): (Input[E]) ⇒ IterateeT[E, F, A]

    Permalink
  10. def doneInput: LazyOption[Input[E]]

    Permalink
  11. def doneInputOr(a: ⇒ Input[E]): Input[E]

    Permalink
  12. def doneValue: LazyOption[A]

    Permalink
  13. def doneValueOr(a: ⇒ A): A

    Permalink
  14. final def eq(arg0: AnyRef): Boolean

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

    Permalink
    Definition Classes
    AnyRef → Any
  16. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  17. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  18. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  19. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  20. def mapCont(k: ((Input[E]) ⇒ IterateeT[E, F, A]) ⇒ IterateeT[E, F, A])(implicit F: Applicative[F]): IterateeT[E, F, A]

    Permalink
  21. def mapContOr[Z](k: ((Input[E]) ⇒ IterateeT[E, F, A]) ⇒ Z, z: ⇒ Z): Z

    Permalink
  22. def mapDoneInputOr[Z](k: (⇒ Input[E]) ⇒ Z, z: ⇒ Z): Z

    Permalink
  23. def mapDoneValueOr[Z](k: (⇒ A) ⇒ Z, z: ⇒ Z): Z

    Permalink
  24. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  25. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  26. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  27. def pointI(implicit P: Applicative[F]): IterateeT[E, F, A]

    Permalink
  28. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  29. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  30. final def wait(): Unit

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped