scalaz

IterV

object IterV

Annotations
@deprecated
Deprecated

(Since version 7.0.0) Scalaz 6 compatibility. Migrate to scalaz.iteratee.

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

Type Members

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

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

  2. case class OptionSyntax[A](value: Option[A]) extends Product with Serializable

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. object Cont

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

  5. object ContM

  6. object Done

    A computation that has finished

  7. object DoneM

    A monadic computation that has finished

  8. object EOF

    Input that is exhausted

  9. object El

    Input that has a value available

  10. object Empty

    Input that has no values available

  11. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  12. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  13. def collect[A, F[_]](implicit r: Reducer[A, F[A]]): IterV[A, F[A]]

    Iteratee that collects all inputs with the given monoid.

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

    An iteratee that skips the first n elements of the input

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

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

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

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

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

    Produces chunked output split by the given predicate.

  20. def hashCode(): Int

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

    An iteratee that consumes the head of the input

  22. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  23. implicit def iterVMonad[E]: Monad[[α]IterV[E, α]]

  24. def length[E]: IterV[E, Int]

    An iteratee that counts and consumes the elements of the input

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

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

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

    Definition Classes
    AnyRef
  28. def peek[E]: IterV[E, Option[E]]

    An iteratee that returns the first element of the input

  29. 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

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

    Repeats the given iteratee by appending with the given monoid.

  31. 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.

  32. def sum[A, B](implicit r: Reducer[A, B]): IterV[A, B]

    Iteratee that sums the inputs with a given reducer.

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

    Definition Classes
    AnyRef
  34. def takeWhile[A, F[_]](pred: (A) ⇒ Boolean)(implicit mon: Monoid[F[A]], pr: Applicative[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. final def wait(): Unit

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  39. implicit def wrapOptionSyntax[A](value: Option[A]): OptionSyntax[A]

Inherited from AnyRef

Inherited from Any

Ungrouped