Trait

io.iteratee

EnumeratorModule

Related Doc: package iteratee

Permalink

trait EnumeratorModule[F[_]] extends AnyRef

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 FailEnumeratorPartiallyApplied[E] extends AnyRef

    Permalink

  2. 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](implicit F: Applicative[F]): Enumerator[F, E]

    Permalink

    An empty enumerator.

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

    Permalink

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

  8. final def enumList[E](es: List[E])(implicit F: Monad[F]): Enumerator[F, E]

    Permalink

    An enumerator that produces values from a list.

  9. final def enumOne[E](e: E)(implicit F: Applicative[F]): Enumerator[F, E]

    Permalink

    An enumerator that produces a single value.

  10. final def enumStream[E](es: Stream[E])(implicit F: Monad[F]): Enumerator[F, E]

    Permalink

    An enumerator that produces values from a stream.

  11. final def enumVector[E](es: Vector[E])(implicit F: Monad[F]): Enumerator[F, E]

    Permalink

    An enumerator that produces values from a vector.

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

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

    Permalink
    Definition Classes
    AnyRef → Any
  14. final def failEnumerator[E]: FailEnumeratorPartiallyApplied[E]

    Permalink

    Create a failed enumerator with the given error.

  15. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  16. final def generate[E](init: E)(f: (E) ⇒ Option[E])(implicit F: Monad[F]): Enumerator[F, E]

    Permalink

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

  17. final def generateM[E](init: E)(f: (E) ⇒ F[Option[E]])(implicit F: Monad[F]): Enumerator[F, E]

    Permalink

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

  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)(implicit F: Monad[F]): 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])(implicit F: Monad[F]): Enumerator[F, E]

    Permalink

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

  23. final def liftToEnumerator[E](fe: F[E])(implicit F: Monad[F]): Enumerator[F, E]

    Permalink

    Lift an effectful value into an enumerator.

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

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

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

    Permalink
    Definition Classes
    AnyRef
  27. final def perform[E]: PerformPartiallyApplied[E]

    Permalink

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

  28. final def repeat[E](e: E)(implicit F: Monad[F]): Enumerator[F, E]

    Permalink

    An enumerator that repeats the given value indefinitely.

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

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

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

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

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

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

Inherited from AnyRef

Inherited from Any

Enumerators

Helper classes

Ungrouped