Trait

io.iteratee

EnumeratorErrorModule

Related Doc: package iteratee

Permalink

trait EnumeratorErrorModule[F[_], T] extends EnumeratorModule[F]

Self Type
EnumeratorErrorModule[F, T] with Module[F] { type M[f[_]] <: cats.MonadError[f,T] }
Linear Supertypes
Known Subclasses
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. EnumeratorErrorModule
  2. EnumeratorModule
  3. AnyRef
  4. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. sealed class PerformPartiallyApplied[E] extends AnyRef

    Permalink

    Definition Classes
    EnumeratorModule

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.

    An empty enumerator.

    Definition Classes
    EnumeratorModule
  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.

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

    Definition Classes
    EnumeratorModule
  8. final def enumList[E](es: List[E]): Enumerator[F, E]

    Permalink

    An enumerator that produces values from a list.

    An enumerator that produces values from a list.

    Definition Classes
    EnumeratorModule
  9. final def enumOne[E](e: E): Enumerator[F, E]

    Permalink

    An enumerator that produces a single value.

    An enumerator that produces a single value.

    Definition Classes
    EnumeratorModule
  10. final def enumStream[E](es: Stream[E]): Enumerator[F, E]

    Permalink

    An enumerator that produces values from a stream.

    An enumerator that produces values from a stream.

    Definition Classes
    EnumeratorModule
  11. final def enumVector[E](es: Vector[E]): Enumerator[F, E]

    Permalink

    An enumerator that produces values from a vector.

    An enumerator that produces values from a vector.

    Definition Classes
    EnumeratorModule
  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](t: T): Enumerator[F, 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 generateM[E](f: F[Option[E]]): Enumerator[F, E]

    Permalink

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

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

    Definition Classes
    EnumeratorModule
  17. final def getClass(): Class[_]

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

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

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

    Permalink

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

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

    Definition Classes
    EnumeratorModule
  21. 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.

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

    Definition Classes
    EnumeratorModule
  22. 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.

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

    Definition Classes
    EnumeratorModule
  23. 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.

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

    Definition Classes
    EnumeratorModule
  24. final def liftToEnumerator[E](fe: F[E]): Enumerator[F, E]

    Permalink

    Lift an effectful value into an enumerator.

    Lift an effectful value into an enumerator.

    Definition Classes
    EnumeratorModule
  25. final def ne(arg0: AnyRef): Boolean

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

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

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

    Permalink

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

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

    Definition Classes
    EnumeratorModule
  29. final def repeat[E](e: E): Enumerator[F, E]

    Permalink

    An enumerator that repeats the given value indefinitely.

    An enumerator that repeats the given value indefinitely.

    Definition Classes
    EnumeratorModule
  30. final def synchronized[T0](arg0: ⇒ T0): T0

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

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

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

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

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

Inherited from EnumeratorModule[F]

Inherited from AnyRef

Inherited from Any

Enumerators

Iteratees

Helper classes

Ungrouped