org.specs2.internal.scalaz

IterV

object IterV extends AnyRef

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, A] = (IterV[E, A]) ⇒ M[IterV[E, A]]

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

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

    Definition Classes
    Any
  14. def clone(): AnyRef

    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws()
  15. def drop[E](n: Int): IterV[E, Unit]

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

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

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

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

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

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

  21. def hashCode(): Int

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

    An iteratee that consumes the head of the input *

  23. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  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: Pure[F]): IterV[E, F[A]]

    Repeats the given iteratee by appending with the given monoid.

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

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

  33. def toString(): String

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

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws()

Inherited from AnyRef

Inherited from Any