Trait

io.iteratee.modules

EnumeratorErrorModule

Related Doc: package modules

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 enumEither[E](either: Either[T, E]): Enumerator[F, E]

    Permalink

    An enumerator that either produces a single value or fails.

  8. 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
  9. final def enumIterable[E](es: Iterable[E], chunkSize: Int = defaultChunkSize): Enumerator[F, E]

    Permalink

    An enumerator that produces values from an iterable collection.

    An enumerator that produces values from an iterable collection.

    Definition Classes
    EnumeratorModule
  10. 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
  11. 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
  12. final def enumStream[E](es: Stream[E], chunkSize: Int = defaultChunkSize): Enumerator[F, E]

    Permalink

    An enumerator that produces values from a stream.

    An enumerator that produces values from a stream.

    Definition Classes
    EnumeratorModule
  13. 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
  14. final def enumerate[E](xs: E*): Enumerator[F, E]

    Permalink

    An enumerator that produces the given values.

    An enumerator that produces the given values.

    Definition Classes
    EnumeratorModule
  15. final def eq(arg0: AnyRef): Boolean

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

    Permalink
    Definition Classes
    AnyRef → Any
  17. final def failEnumerator[E](t: T): Enumerator[F, E]

    Permalink

    Create a failed enumerator with the given error.

  18. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  19. 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
  20. final def getClass(): Class[_]

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

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

    Permalink
    Definition Classes
    Any
  23. 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
  24. 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
  25. 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
  26. 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
  27. 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
  28. final def ne(arg0: AnyRef): Boolean

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

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

    Permalink
    Definition Classes
    AnyRef
  31. 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
  32. 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
  33. final def synchronized[T0](arg0: ⇒ T0): T0

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

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  37. 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