Trait

io.iteratee.modules

EnumeratorModule

Related Doc: package modules

Permalink

trait EnumeratorModule[F[_]] extends AnyRef

Self Type
EnumeratorModule[F] with Module[F]
Linear Supertypes
Known Subclasses
Ordering
  1. Alphabetic
  2. 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

    Permalink

Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  5. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  6. final def empty[E]: Enumerator[F, E]

    Permalink

    An empty enumerator.

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

    Permalink

    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]

    Permalink

    An enumerator that produces values from an iterable collection.

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

    Permalink

    An enumerator that produces values from a list.

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

    Permalink

    An enumerator that produces a single value.

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

    Permalink

    An enumerator that produces values from a stream.

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

    Permalink

    An enumerator that produces values from a vector.

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

    Permalink

    An enumerator that produces the given values.

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

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

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

    Permalink
    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]

    Permalink

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

  18. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  19. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  20. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  21. final def iterate[E](init: E)(f: (E) ⇒ E): Enumerator[F, E]

    Permalink

    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]

    Permalink

    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]

    Permalink

    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]

    Permalink

    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]

    Permalink

    Lift an effectful value into an enumerator.

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

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

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

    Permalink
    Definition Classes
    AnyRef
  29. final def perform[E]: (EnumeratorModule.this)#PerformPartiallyApplied[E]

    Permalink

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

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

    Permalink

    An enumerator that repeats the given value indefinitely.

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

    Permalink
    Definition Classes
    AnyRef
  32. def toString(): String

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

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from AnyRef

Inherited from Any

Enumerators

Helper classes

Ungrouped