io.iteratee

Iteratee

sealed class Iteratee[E, F[_], A] extends AnyRef

A data sink that represents a value of type F[Step[E, F, A]].

E

The type of the input data

F

The type constructor representing an effect

A

The type of the calculated result

See also

Step

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

Instance Constructors

  1. new Iteratee(value: F[Step[E, F, A]])

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. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  7. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  8. def contramap[EE](f: (EE) ⇒ E)(implicit F: Monad[F]): Iteratee[EE, F, A]

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

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

    Definition Classes
    AnyRef → Any
  11. def feed[EE, AA](f: (Step[E, F, A]) ⇒ Iteratee[EE, F, AA])(implicit F: FlatMap[F]): Iteratee[EE, F, AA]

    Combine this Iteratee with an Enumerator-like function.

    Combine this Iteratee with an Enumerator-like function.

    f

    An Enumerator-like function. If the type parameters EE and BB are chosen to be E and B respectively, the type of f is equivalent to Enumerator[E, F, A].

  12. def feedE(enum: Enumerator[E, F])(implicit F: FlatMap[F]): Iteratee[E, F, A]

  13. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  14. def flatMap[B](f: (A) ⇒ Iteratee[E, F, B])(implicit F: Monad[F]): Iteratee[E, F, B]

  15. def foldWith[Z](folder: StepFolder[E, F, A, Z])(implicit F: Functor[F]): F[Z]

  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 map[B](f: (A) ⇒ B)(implicit F: Monad[F]): Iteratee[E, F, B]

  20. def mapI[G[_]](f: NaturalTransformation[F, G])(implicit F: Functor[F]): Iteratee[E, G, A]

  21. final def ne(arg0: AnyRef): Boolean

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

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

    Definition Classes
    AnyRef
  24. def run(implicit F: Monad[F]): F[A]

    Run this iteratee.

  25. def sequenceI(implicit m: Monad[F]): Enumeratee[E, A, F]

    Feeds input elements to this iteratee until it is done, feeds the produced value to the inner iteratee.

    Feeds input elements to this iteratee until it is done, feeds the produced value to the inner iteratee. Then this iteratee will start over, looping until the inner iteratee is done.

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

    Definition Classes
    AnyRef
  27. def through[O](enumeratee: Enumeratee[O, E, F])(implicit F: Monad[F]): Iteratee[O, F, A]

  28. def toString(): String

    Definition Classes
    AnyRef → Any
  29. def up[G[_]](implicit G: Applicative[G], F: Comonad[F]): Iteratee[E, G, A]

  30. val value: F[Step[E, F, A]]

  31. final def wait(): Unit

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  34. def zip[B](other: Iteratee[E, F, B])(implicit F: Monad[F]): Iteratee[E, F, (A, B)]

Inherited from AnyRef

Inherited from Any

Ungrouped