scalaz

IterV

object IterV extends AnyRef

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. Hide All
  2. Show all
  1. IterV
  2. AnyRef
  3. Any
Visibility
  1. Public
  2. All

Type Members

  1. type EnumeratorM [M[_], E] = ~>[[α]IterV[E, α], [α]M[IterV[E, α]]]

    An EnumeratorM[M, _, _] feeds data in a monad M to an iteratee

Value Members

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

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

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

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

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

    Attributes
    final
    Definition Classes
    Any
  6. object Cont extends AnyRef

    A computation that takes an element from an input to yield a new computation

  7. object ContM extends AnyRef

  8. object Done extends AnyRef

    A computation that has finished

  9. object DoneM extends AnyRef

    A monadic computation that has finished

  10. object EOF extends AnyRef

    Input that is exhausted

  11. object El extends AnyRef

    Input that has no values available

  12. object Empty extends AnyRef

    Input that has a value available

  13. def asInstanceOf [T0] : T0

    Attributes
    final
    Definition Classes
    Any
  14. def clone (): AnyRef

    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws()
  15. def collect [A, F[_]] (implicit mon: Monoid[F[A]], pr: Pure[F]): IterV[A, F[A]]

    Iteratee that collects all inputs with the given monoid.

  16. def drop [E] (n: Int): IterV[E, Unit]

    An iteratee that skips the first n elements of the input

  17. def eq (arg0: AnyRef): Boolean

    Attributes
    final
    Definition Classes
    AnyRef
  18. def equals (arg0: Any): Boolean

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

    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws()
  20. def getClass (): java.lang.Class[_]

    Attributes
    final
    Definition Classes
    AnyRef → Any
  21. def groupBy [A, F[_]] (pred: (A, A) ⇒ Boolean)(implicit mon: Monoid[F[A]], pr: Pure[F]): IterV[A, F[A]]

    Produces chunked output split by the given predicate.

  22. def hashCode (): Int

    Definition Classes
    AnyRef → Any
  23. def head [E] : IterV[E, Option[E]]

    An iteratee that consumes the head of the input

  24. def isInstanceOf [T0] : Boolean

    Attributes
    final
    Definition Classes
    Any
  25. def length [E] : IterV[E, Int]

    An iteratee that counts and consumes the elements of the input

  26. def ne (arg0: AnyRef): Boolean

    Attributes
    final
    Definition Classes
    AnyRef
  27. def notify (): Unit

    Attributes
    final
    Definition Classes
    AnyRef
  28. def notifyAll (): Unit

    Attributes
    final
    Definition Classes
    AnyRef
  29. def peek [E] : IterV[E, Option[E]]

    An iteratee that returns the first element of the input

  30. def peekDoneOr [A, B] (b: ⇒ B, f: (A) ⇒ IterV[A, B]): IterV[A, B]

    Peeks and returns either a Done iteratee with the given value or runs the given function with the peeked value

  31. def repeat [E, A, F[_]] (iter: IterV[E, A])(implicit mon: Monoid[F[A]], pr: Pure[F]): IterV[E, F[A]]

    Repeats the given iteratee by appending with the given monoid.

  32. def reversed [A, F[_]] (implicit r: Reducer[A, F[A]]): IterV[A, F[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.

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

    Attributes
    final
    Definition Classes
    AnyRef
  34. def takeWhile [A, F[_]] (pred: (A) ⇒ Boolean)(implicit mon: Monoid[F[A]], pr: Pure[F]): IterV[A, F[A]]

    Takes while the given predicate holds, appending with the given monoid.

  35. def toString (): String

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

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

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

    Attributes
    final
    Definition Classes
    AnyRef
    Annotations
    @throws()

Inherited from AnyRef

Inherited from Any