Packages

object Enumerator extends EnumeratorInstances with Serializable

Source
Enumerator.scala
Linear Supertypes
Serializable, Serializable, EnumeratorInstances, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Enumerator
  2. Serializable
  3. Serializable
  4. EnumeratorInstances
  5. AnyRef
  6. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

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

    An empty enumerator.

  7. final def enumEither[F[_], T, E](either: Either[T, E])(implicit F: MonadError[F, T]): Enumerator[F, E]

    An enumerator that either produces a single value or fails.

  8. final def enumIndexedSeq[F[_], E](xs: IndexedSeq[E], min: Int = 0, max: Int = Int.MaxValue)(implicit F: Applicative[F]): Enumerator[F, E]

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

  9. final def enumIterable[F[_], E](xs: Iterable[E], chunkSize: Int = defaultChunkSize)(implicit arg0: Monad[F]): Enumerator[F, E]

    An enumerator that produces values from an iterable collection.

  10. final def enumList[F[_], E](xs: List[E])(implicit F: Applicative[F]): Enumerator[F, E]

    An enumerator that produces values from a list.

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

    An enumerator that produces a single value.

  12. final def enumStream[F[_], E](xs: Stream[E], chunkSize: Int = defaultChunkSize)(implicit arg0: Monad[F]): Enumerator[F, E]

    An enumerator that produces values from a stream.

  13. final def enumVector[F[_], E](xs: Vector[E])(implicit F: Applicative[F]): Enumerator[F, E]

    An enumerator that produces values from a vector.

  14. final def enumerate[F[_], E](xs: E*)(implicit F: Applicative[F]): Enumerator[F, E]

    An enumerator that produces the given values.

  15. implicit final def enumeratorMonad[F[_]](implicit M0: Monad[F]): Monad[[β$0$]Enumerator[F, β$0$]]
    Definition Classes
    EnumeratorInstances
  16. implicit final def enumeratorMonoid[F[_], E](implicit arg0: Monad[F]): Monoid[Enumerator[F, E]]
    Definition Classes
    EnumeratorInstances
  17. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  18. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  19. final def fail[F[_], T, E](e: T)(implicit F: MonadError[F, T]): Enumerator[F, E]

    Create a failed enumerator with the given error.

  20. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  21. final def generateM[F[_], E](f: F[Option[E]])(implicit F: Monad[F]): Enumerator[F, E]

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

  22. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  23. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  24. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  25. final def iterate[F[_], E](init: E)(f: (E) ⇒ E)(implicit F: Monad[F]): Enumerator[F, E]

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

  26. final def iterateM[F[_], E](init: E)(f: (E) ⇒ F[E])(implicit F: Monad[F]): Enumerator[F, E]

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

  27. final def iterateUntil[F[_], E](init: E)(f: (E) ⇒ Option[E])(implicit F: Monad[F]): Enumerator[F, E]

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

  28. final def iterateUntilM[F[_], E](init: E)(f: (E) ⇒ F[Option[E]])(implicit F: Monad[F]): Enumerator[F, E]

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

  29. final def liftM[F[_], E](fa: F[E])(implicit F: FlatMap[F]): Enumerator[F, E]

    Lift an effectful value into an enumerator.

  30. final def liftMEval[F[_], E](fa: Eval[F[E]])(implicit F: FlatMap[F]): Enumerator[F, E]

    Lift an effectful value in a cats.Eval into an enumerator.

  31. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  32. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  33. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  34. final def perform[F[_], E, B](f: F[B])(implicit F: FlatMap[F]): Enumerator[F, E]

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

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

    An enumerator that repeats the given value indefinitely.

  36. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  37. def toString(): String
    Definition Classes
    AnyRef → Any
  38. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  39. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  40. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )
  41. object StackUnsafe

    Enumerators that rely on F to provide stack safety.

    Enumerators that rely on F to provide stack safety.

    These implementations will generally be more efficient than the default ones, but will not be stack safe unless recursive monadic binding in F is stack safe.

Inherited from Serializable

Inherited from Serializable

Inherited from EnumeratorInstances

Inherited from AnyRef

Inherited from Any

Ungrouped