Trait

io.iteratee

IterateeModule

Related Doc: package iteratee

Permalink

trait IterateeModule[F[_]] extends AnyRef

Linear Supertypes
Known Subclasses
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. IterateeModule
  2. AnyRef
  3. Any
  1. Hide All
  2. Show all
Visibility
  1. Public
  2. All

Type Members

  1. sealed class FailIterateePartiallyApplied[E, A] extends AnyRef

    Permalink

  2. sealed class LiftToIterateePartiallyApplied[E] extends AnyRef

    Permalink

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

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

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  6. final def consume[E](implicit F: Monad[F]): Iteratee[F, E, Vector[E]]

    Permalink

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

  7. final def consumeIn[E, C[_]](implicit arg0: Applicative[C], arg1: MonoidK[C], F: Monad[F]): Iteratee[F, E, C[E]]

    Permalink

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

  8. final def cont[E, A](ifInput: (NonEmptyVector[E]) ⇒ Iteratee[F, E, A], ifEnd: F[A])(implicit F: Applicative[F]): Iteratee[F, E, A]

    Permalink

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

  9. final def done[E, A](value: A, remaining: Vector[E] = Vector.empty)(implicit F: Applicative[F]): Iteratee[F, E, A]

    Permalink

    Create a new completed Iteratee with the given result and leftover input.

  10. final def drop[E](n: Int)(implicit F: Applicative[F]): Iteratee[F, E, Unit]

    Permalink

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

  11. final def dropWhile[E](p: (E) ⇒ Boolean)(implicit F: Applicative[F]): Iteratee[F, E, Unit]

    Permalink

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

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

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

    Permalink
    Definition Classes
    AnyRef → Any
  14. final def failIteratee[E, A]: FailIterateePartiallyApplied[E, A]

    Permalink

    Create a failed iteratee with the given error.

  15. def finalize(): Unit

    Permalink
    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)(implicit F: Applicative[F]): Iteratee[F, E, A]

    Permalink

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

  17. final def foldM[E, A](init: A)(f: (A, E) ⇒ F[A])(implicit F: Monad[F]): Iteratee[F, E, A]

    Permalink

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

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

    Permalink

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

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

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

    Permalink
    Definition Classes
    AnyRef → Any
  21. final def head[E](implicit F: Applicative[F]): Iteratee[F, E, Option[E]]

    Permalink

    An Iteratee that returns the first value in a stream.

  22. final def identity[E](implicit F: Applicative[F]): Iteratee[F, E, Unit]

    Permalink

    An iteratee that reads nothing from a stream.

  23. final def isEnd[E](implicit F: Applicative[F]): Iteratee[F, E, Boolean]

    Permalink

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

  24. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  25. final def length[E](implicit F: Applicative[F]): Iteratee[F, E, Int]

    Permalink

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

  26. final def liftToIteratee[E]: LiftToIterateePartiallyApplied[E]

    Permalink

    Lift an effectful value into an iteratee.

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

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

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

    Permalink
    Definition Classes
    AnyRef
  30. final def peek[E](implicit F: Applicative[F]): Iteratee[F, E, Option[E]]

    Permalink

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

  31. final def reversed[E](implicit F: Applicative[F]): Iteratee[F, E, List[E]]

    Permalink

    An Iteratee that collects all inputs in reverse order.

  32. final def sum[E](implicit arg0: Monoid[E], F: Monad[F]): Iteratee[F, E, E]

    Permalink

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

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

    Permalink
    Definition Classes
    AnyRef
  34. final def take[E](n: Int)(implicit F: Applicative[F]): Iteratee[F, E, Vector[E]]

    Permalink

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

  35. final def takeWhile[E](p: (E) ⇒ Boolean)(implicit F: Applicative[F]): Iteratee[F, E, Vector[E]]

    Permalink

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

  36. def toString(): String

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

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

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

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

Inherited from AnyRef

Inherited from Any

Constructors

Iteratees

Helper classes

Ungrouped