Packages

t

io.iteratee

IterateeErrorModule

trait IterateeErrorModule[F[_], T] extends IterateeModule[F]

Ordering
  1. Grouped
  2. Alphabetic
  3. By Inheritance
Inherited
  1. IterateeErrorModule
  2. IterateeModule
  3. AnyRef
  4. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. sealed class LiftToIterateePartiallyApplied[E] extends AnyRef

    Definition Classes
    IterateeModule

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. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )
  6. final def consume[E]: Iteratee[F, E, Vector[E]]

    An Iteratee that collects all the elements in a stream in a vector.

    An Iteratee that collects all the elements in a stream in a vector.

    Definition Classes
    IterateeModule
  7. final def consumeIn[E, C[_]](implicit C: Applicative[C], M: MonoidK[C]): Iteratee[F, E, C[E]]

    An Iteratee that collects all the elements in a stream in a given collection type.

    An Iteratee that collects all the elements in a stream in a given collection type.

    Definition Classes
    IterateeModule
  8. final def cont[E, A](ifInput: (NonEmptyList[E]) ⇒ Iteratee[F, E, A], ifEnd: F[A]): Iteratee[F, E, A]

    Create an incomplete Iteratee that will use the given function to process the next input.

    Create an incomplete Iteratee that will use the given function to process the next input.

    Definition Classes
    IterateeModule
  9. final def done[E, A](value: A): Iteratee[F, E, A]

    Create a new completed Iteratee with the given result.

    Create a new completed Iteratee with the given result.

    Definition Classes
    IterateeModule
  10. final def dropI[E](n: Int): Iteratee[F, E, Unit]

    An Iteratee that drops a given number of the values from a stream.

    An Iteratee that drops a given number of the values from a stream.

    Definition Classes
    IterateeModule
  11. final def dropWhileI[E](p: (E) ⇒ Boolean): Iteratee[F, E, Unit]

    An Iteratee that drops values from a stream as long as they satisfy the given predicate.

    An Iteratee that drops values from a stream as long as they satisfy the given predicate.

    Definition Classes
    IterateeModule
  12. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  13. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  14. final def failIteratee[E, A](t: T): Iteratee[F, E, A]

    Create a failed iteratee with the given error.

  15. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  16. final def fold[E, A](init: A)(f: (A, E) ⇒ A): Iteratee[F, E, A]

    An Iteratee that folds a stream using an initial value and an accumulation function.

    An Iteratee that folds a stream using an initial value and an accumulation function.

    Definition Classes
    IterateeModule
  17. final def foldM[E, A](init: A)(f: (A, E) ⇒ F[A]): Iteratee[F, E, A]

    An Iteratee that folds a stream using an initial value and a monadic accumulation function.

    An Iteratee that folds a stream using an initial value and a monadic accumulation function.

    Definition Classes
    IterateeModule
  18. final def foldMap[E, A](f: (E) ⇒ A)(implicit A: Monoid[A]): Iteratee[F, E, A]

    An Iteratee that combines values using a function to a type with a cats.Monoid instance.

    An Iteratee that combines values using a function to a type with a cats.Monoid instance.

    Definition Classes
    IterateeModule
  19. final def foldMapM[E, A](f: (E) ⇒ F[A])(implicit A: Monoid[A]): Iteratee[F, E, A]

    An Iteratee that combines values using an effectful function to a type with a cats.Monoid instance.

    An Iteratee that combines values using an effectful function to a type with a cats.Monoid instance.

    Definition Classes
    IterateeModule
  20. final def foldMapMOption[E, A](f: (E) ⇒ F[A])(implicit A: Semigroup[A]): Iteratee[F, E, Option[A]]

    An Iteratee that combines values using an effectful function to a type with a cats.Semigroup instance.

    An Iteratee that combines values using an effectful function to a type with a cats.Semigroup instance.

    Definition Classes
    IterateeModule
  21. final def foldMapOption[E, A](f: (E) ⇒ A)(implicit A: Semigroup[A]): Iteratee[F, E, Option[A]]

    An Iteratee that combines values using a function to a type with a cats.Semigroup instance.

    An Iteratee that combines values using a function to a type with a cats.Semigroup instance.

    Definition Classes
    IterateeModule
  22. final def foreach[E](f: (E) ⇒ Unit): Iteratee[F, E, Unit]

    An Iteratee that runs a function for its side effects.

    An Iteratee that runs a function for its side effects.

    Definition Classes
    IterateeModule
  23. final def foreachM[A](f: (A) ⇒ F[Unit]): Iteratee[F, A, Unit]

    An Iteratee that runs an effectful function for its side effects.

    An Iteratee that runs an effectful function for its side effects.

    Definition Classes
    IterateeModule
  24. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  25. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  26. final def head[E]: Iteratee[F, E, Option[E]]

    An Iteratee that returns the first value in a stream.

    An Iteratee that returns the first value in a stream.

    Definition Classes
    IterateeModule
  27. final def identityIteratee[E]: Iteratee[F, E, Unit]

    An iteratee that reads nothing from a stream.

    An iteratee that reads nothing from a stream.

    Definition Classes
    IterateeModule
  28. final def isEnd[E]: Iteratee[F, E, Boolean]

    An Iteratee that checks if the stream is at its end.

    An Iteratee that checks if the stream is at its end.

    Definition Classes
    IterateeModule
  29. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  30. final def last[E]: Iteratee[F, E, Option[E]]

    An Iteratee that returns the last value in a stream.

    An Iteratee that returns the last value in a stream.

    Definition Classes
    IterateeModule
  31. final def length[E]: Iteratee[F, E, Long]

    An Iteratee that counts the number of values in a stream.

    An Iteratee that counts the number of values in a stream.

    Definition Classes
    IterateeModule
  32. final def liftToIteratee[E]: (IterateeErrorModule.this)#LiftToIterateePartiallyApplied[E]

    Lift an effectful value into an iteratee.

    Lift an effectful value into an iteratee.

    Definition Classes
    IterateeModule
  33. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  34. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  35. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  36. final def peek[E]: Iteratee[F, E, Option[E]]

    An Iteratee that returns the first value in a stream without consuming it.

    An Iteratee that returns the first value in a stream without consuming it.

    Definition Classes
    IterateeModule
  37. final def reversed[E]: Iteratee[F, E, List[E]]

    An Iteratee that collects all inputs in reverse order.

    An Iteratee that collects all inputs in reverse order.

    Definition Classes
    IterateeModule
  38. final def sum[E](implicit E: Monoid[E]): Iteratee[F, E, E]

    An Iteratee that combines values using an cats.Monoid instance.

    An Iteratee that combines values using an cats.Monoid instance.

    Definition Classes
    IterateeModule
  39. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  40. final def takeI[E](n: Int): Iteratee[F, E, Vector[E]]

    An Iteratee that returns a given number of the first values in a stream.

    An Iteratee that returns a given number of the first values in a stream.

    Definition Classes
    IterateeModule
  41. final def takeWhileI[E](p: (E) ⇒ Boolean): Iteratee[F, E, Vector[E]]

    An Iteratee that returns values from a stream as long as they satisfy the given predicate.

    An Iteratee that returns values from a stream as long as they satisfy the given predicate.

    Definition Classes
    IterateeModule
  42. def toString(): String
    Definition Classes
    AnyRef → Any
  43. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  44. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  45. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )

Inherited from IterateeModule[F]

Inherited from AnyRef

Inherited from Any

Constructors

Iteratees

Helper classes

Ungrouped