scalaz

IterV

sealed trait IterV[E, A] extends AnyRef

A pure iteratee computation which is either done or needs more input

Annotations
@deprecated
Deprecated

(Since version 7.0.0) Scalaz 6 compatibility. Migrate to scalaz.iteratee.

Source
Iteratee.scala
Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. IterV
  2. AnyRef
  3. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Abstract Value Members

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

Concrete Value Members

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

    Definition Classes
    AnyRef
  2. final def !=(arg0: Any): Boolean

    Definition Classes
    Any
  3. final def ##(): Int

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

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

    Definition Classes
    Any
  6. def apply[F[_]](f: F[E])(implicit e: Enumerator[F]): IterV[E, A]

  7. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  8. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  9. def drop1First: IterV[E, A]

  10. final def eq(arg0: AnyRef): Boolean

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

    Definition Classes
    AnyRef → Any
  12. def feed(e: Input[E]): IterV[E, A]

  13. def filterInput(p: (E) ⇒ Boolean): IterV[E, A]

  14. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  15. def flatMap[B](f: (A) ⇒ IterV[E, B]): IterV[E, B]

  16. final def getClass(): Class[_]

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

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

    Definition Classes
    Any
  19. def lift: Iteratee[Scalaz.Id, E, A]

    Lift into a monadic iteratee, in the Id monad.

  20. def map[B](f: (A) ⇒ B): IterV[E, B]

  21. def mapInput(f: (Input[E]) ⇒ Input[E]): IterV[E, A]

  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 run: A

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

    Definition Classes
    AnyRef
  27. def take(n: Int): IterV[E, A]

    An iteratee that sends itself the EOF signal after n inputs.

  28. def toString(): String

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

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  32. def zipWith[B, C](eb: IterV[E, B], f: (A, B) ⇒ C): IterV[E, C]

Inherited from AnyRef

Inherited from Any

Ungrouped