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

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

  7. object ContM

  8. object Done

    A computation that has finished

  9. object DoneM

    A monadic computation that has finished

  10. object EOF

    Input that is exhausted

  11. object El

    Input that has a value available

  12. object Empty

    Input that has no values available

  13. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  14. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  15. def collect[A, F[_]](implicit r: Reducer[A, F[A]]): 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. final def eq(arg0: AnyRef): Boolean

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

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

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

    Definition Classes
    AnyRef → Any
  21. 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.

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

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

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

    An iteratee that counts and consumes the elements of the input

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

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

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

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

    An iteratee that returns the first element of the input

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

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

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

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

    Iteratee that sums the inputs with a given reducer.

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

    Definition Classes
    AnyRef
  36. 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.

  37. def toString(): String

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

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

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

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

Inherited from AnyRef

Inherited from Any

Ungrouped