Packages

t

io.iteratee

EnumeratorModule

trait EnumeratorModule[F[_]] extends AnyRef

Ordering
  1. Grouped
  2. Alphabetic
  3. By Inheritance
Inherited
  1. EnumeratorModule
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. sealed class PerformPartiallyApplied[E] extends AnyRef

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. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )
  6. final def empty[E]: Enumerator[F, E]

    An empty enumerator.

  7. final def enumIndexedSeq[E](es: IndexedSeq[E], min: Int = 0, max: Int = Int.MaxValue): Enumerator[F, E]

    An enumerator that produces values from a slice of an indexed sequence.

  8. final def enumIterable[E](es: Iterable[E], chunkSize: Int = defaultChunkSize): Enumerator[F, E]

    An enumerator that produces values from an iterable collection.

  9. final def enumList[E](es: List[E]): Enumerator[F, E]

    An enumerator that produces values from a list.

  10. final def enumOne[E](e: E): Enumerator[F, E]

    An enumerator that produces a single value.

  11. final def enumStream[E](es: Stream[E], chunkSize: Int = defaultChunkSize): Enumerator[F, E]

    An enumerator that produces values from a stream.

  12. final def enumVector[E](es: Vector[E]): Enumerator[F, E]

    An enumerator that produces values from a vector.

  13. final def enumerate[E](xs: E*): Enumerator[F, E]

    An enumerator that produces the given values.

  14. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  15. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  16. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  17. final def generateM[E](f: F[Option[E]]): Enumerator[F, E]

    An enumerator that returns the result of an effectful operation until None is generated.

  18. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  19. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  20. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  21. final def iterate[E](init: E)(f: (E) ⇒ E): Enumerator[F, E]

    An enumerator that iteratively performs an operation and returns the results.

  22. final def iterateM[E](init: E)(f: (E) ⇒ F[E]): Enumerator[F, E]

    An enumerator that iteratively performs an effectful operation and returns the results.

  23. final def iterateUntil[E](init: E)(f: (E) ⇒ Option[E]): Enumerator[F, E]

    An enumerator that iteratively performs an operation until None is produced and returns the results.

  24. final def iterateUntilM[E](init: E)(f: (E) ⇒ F[Option[E]]): Enumerator[F, E]

    An enumerator that iteratively performs an effectful operation until None is produced and returns the results.

  25. final def liftToEnumerator[E](fe: F[E]): Enumerator[F, E]

    Lift an effectful value into an enumerator.

  26. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  27. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  28. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  29. final def perform[E]: (EnumeratorModule.this)#PerformPartiallyApplied[E]

    An enumerator that forces the evaluation of an effect when it is consumed.

  30. final def repeat[E](e: E): Enumerator[F, E]

    An enumerator that repeats the given value indefinitely.

  31. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  32. def toString(): String
    Definition Classes
    AnyRef → Any
  33. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  34. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  35. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )

Inherited from AnyRef

Inherited from Any

Enumerators

Helper classes

Ungrouped