io.iteratee

Iteratee

object Iteratee extends IterateeInstances

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

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. implicit def IterateeContravariant[F[_], A](implicit arg0: Monad[F]): Contravariant[[x]Iteratee[x, F, A]]

    Definition Classes
    IterateeInstances
  7. implicit def IterateeMonad[E, F[_]](implicit F0: Monad[F]): Monad[[x]Iteratee[E, F, x]]

    Definition Classes
    IterateeInstances0
  8. implicit def PureIterateeMonad[E]: Monad[[x]Iteratee[E, [A]A, x]]

    Definition Classes
    IterateeInstances0
  9. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  10. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  11. def collectT[E, F[_], A[_]](implicit M: Monad[F], mae: Monoid[A[E]], pointed: Applicative[A]): Iteratee[E, F, A[E]]

  12. def consume[E, F[_]](implicit arg0: Monad[F]): Iteratee[E, F, Vector[E]]

  13. def consumeIn[E, F[_], A[_]](implicit arg0: Monad[F], arg1: MonoidK[A], arg2: Applicative[A]): Iteratee[E, F, A[E]]

    An iteratee that consumes all of the input into something that is MonoidK and Applicative.

  14. def cont[E, F[_], A](c: (Input[E]) ⇒ Iteratee[E, F, A])(implicit arg0: Applicative[F]): Iteratee[E, F, A]

  15. def done[E, F[_], A](d: A, r: Input[E])(implicit arg0: Applicative[F]): Iteratee[E, F, A]

  16. def drop[E, F[_]](n: Int)(implicit arg0: Applicative[F]): Iteratee[E, F, Unit]

    An iteratee that skips the first n elements of the input *

  17. def dropWhile[E, F[_]](p: (E) ⇒ Boolean)(implicit arg0: Applicative[F]): Iteratee[E, F, Unit]

    An iteratee that skips elements while the predicate evaluates to true.

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

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

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

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  21. def fold[E, F[_], A](init: A)(f: (A, E) ⇒ A)(implicit arg0: Applicative[F]): Iteratee[E, F, A]

  22. def foldM[E, F[_], A](init: A)(f: (A, E) ⇒ F[A])(implicit m: Monad[F]): Iteratee[E, F, A]

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

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

    Definition Classes
    AnyRef → Any
  25. def head[E, F[_]](implicit arg0: Applicative[F]): Iteratee[E, F, Option[E]]

    An iteratee that consumes the head of the input *

  26. def identity[E, F[_]](implicit arg0: Applicative[F]): Iteratee[E, F, Unit]

  27. def isEnd[E, F[_]](implicit arg0: Applicative[F]): Iteratee[E, F, Boolean]

    An iteratee that checks if the input is EOF.

  28. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  29. def iteratee[E, F[_], A](s: F[Step[E, F, A]]): Iteratee[E, F, A]

  30. def joinI[E, F[_], I, B](it: Iteratee[E, F, Step[I, F, B]])(implicit arg0: Monad[F]): Iteratee[E, F, B]

  31. def length[E, F[_]](implicit arg0: Applicative[F]): Iteratee[E, F, Int]

    An iteratee that counts and consumes the elements of the input

  32. def liftM[E, F[_], A](fa: F[A])(implicit arg0: Monad[F]): Iteratee[E, F, A]

    Lift an effectful value into an iteratee.

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

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

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

    Definition Classes
    AnyRef
  36. def peek[E, F[_]](implicit arg0: Applicative[F]): Iteratee[E, F, Option[E]]

    An iteratee that returns the first element of the input *

  37. def reversed[A, F[_]](implicit arg0: Applicative[F]): Iteratee[A, F, List[A]]

    Iteratee that collects all inputs in reverse with the given reducer.

    Iteratee that collects all inputs in reverse with the given reducer.

    This iteratee is useful for F[_] with efficient cons, i.e. List.

  38. def sum[E, F[_]](implicit arg0: Monoid[E], arg1: Monad[F]): Iteratee[E, F, E]

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

    Definition Classes
    AnyRef
  40. def take[A, F[_]](n: Int)(implicit arg0: Applicative[F]): Iteratee[A, F, Vector[A]]

    Iteratee that collects the first n inputs.

  41. def takeWhile[A, F[_]](p: (A) ⇒ Boolean)(implicit arg0: Applicative[F]): Iteratee[A, F, Vector[A]]

    Iteratee that collects inputs until the input element fails a test.

  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
    @throws( ... )

Inherited from IterateeInstances

Inherited from IterateeInstances0

Inherited from AnyRef

Inherited from Any

Ungrouped