Packages

  • package root
    Definition Classes
    root
  • package io
    Definition Classes
    root
  • package iteratee
    Definition Classes
    io
  • package internal

    Internal types and utilities.

    Internal types and utilities.

    While some of these types and utilities are part of the public API and are used in the implementation of io.iteratee, they are not designed for clarity or ease-of-use, and should never be needed for idiomatic use of the library.

    Definition Classes
    iteratee
  • Step

object Step extends Serializable

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

Type Members

  1. abstract class Cont[F[_], E, A] extends BaseCont[F, E, A]

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 consume[F[_], A](implicit arg0: Applicative[F]): Step[F, A, Vector[A]]

    A Step that collects all the elements in a stream in a vector.

  7. final def consumeIn[F[_], E, C[_]](implicit F: Applicative[F], M: MonoidK[C], C: Applicative[C]): Step[F, E, C[E]]

    A Step that collects all the elements in a stream in a given collection type.

  8. final def cont[F[_], E, A](onInput: (NonEmptyList[E]) ⇒ F[Step[F, E, A]], onEnd: F[A])(implicit F: Applicative[F]): Step[F, E, A]

    Create an incomplete Step that will use the given functions to process the next input.

  9. final def done[F[_], E, A](value: A)(implicit arg0: Applicative[F]): Step[F, E, A]

    Create a new completed Step with the given result.

  10. final def doneWithLeftovers[F[_], E, A](value: A, remaining: Seq[E])(implicit arg0: Applicative[F]): Step[F, E, A]

    Create a new completed Step with the given result and leftover input.

  11. final def drop[F[_], E](n: Int)(implicit F: Applicative[F]): Step[F, E, Unit]

    A Step that drops a given number of the values from a stream.

  12. final def dropWhile[F[_], E](p: (E) ⇒ Boolean)(implicit arg0: Applicative[F]): Step[F, E, Unit]

    A Step that drops values from a stream as long as they satisfy the given predicate.

  13. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  14. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  15. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  16. final def fold[F[_], E, A](init: A)(f: (A, E) ⇒ A)(implicit F: Applicative[F]): Step[F, E, A]

    A Step that folds a stream using an initial value and an accumulation function.

  17. final def foldM[F[_], E, A](init: A)(f: (A, E) ⇒ F[A])(implicit F: Monad[F]): Step[F, E, A]

    A Step that folds a stream using an initial value and a monadic accumulation function.

  18. final def foldMap[F[_], E, A](f: (E) ⇒ A)(implicit F: Applicative[F], M: Monoid[A]): Step[F, E, A]

    A Step that transforms and sums values in a stream.

  19. final def foldMapM[F[_], E, A](f: (E) ⇒ F[A])(implicit F: Applicative[F], M: Monoid[A]): Step[F, E, A]

    A Step that transforms and sums values in a stream.

  20. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  21. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  22. final def head[F[_], E](implicit F: Applicative[F]): Step[F, E, Option[E]]

    A Step that returns the first value in a stream.

  23. final def isEnd[F[_], E](implicit F: Applicative[F]): Step[F, E, Boolean]
  24. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  25. final def joinI[F[_], A, B, C](step: Step[F, A, Step[F, B, C]])(implicit F: Monad[F]): F[Step[F, A, C]]

    Collapse a nested Step into one layer.

  26. final def last[F[_], E](implicit F: Applicative[F]): Step[F, E, Option[E]]

    A Step that returns the first value in a stream.

  27. final def length[F[_], A](implicit arg0: Applicative[F]): Step[F, A, Long]

    A Step that counts the number of values in a stream.

  28. final def liftM[F[_], E, A](fa: F[A])(implicit F: Monad[F]): F[Step[F, E, A]]

    Lift an effectful value into a Step.

  29. final def liftMEval[F[_], E, A](fa: Eval[F[A]])(implicit F: Monad[F]): F[Step[F, E, A]]

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

  30. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  31. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  32. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  33. final def peek[F[_], E](implicit F: Applicative[F]): Step[F, E, Option[E]]

    A Step that returns the first value in a stream without consuming it.

  34. final def sum[F[_], E](implicit F: Applicative[F], M: Monoid[E]): Step[F, E, E]

    A Step that sums of values in a stream.

  35. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  36. final def tailRecM[F[_], E, A, B](a: A)(f: (A) ⇒ F[Step[F, E, Either[A, B]]])(implicit arg0: Monad[F]): Step[F, E, B]
  37. final def take[F[_], E](n: Int)(implicit arg0: Applicative[F]): Step[F, E, Vector[E]]

    A Step that returns a given number of the first values in a stream.

  38. final def takeWhile[F[_], E](p: (E) ⇒ Boolean)(implicit arg0: Applicative[F]): Step[F, E, Vector[E]]

    A Step that returns values from a stream as long as they satisfy the given predicate.

  39. def toString(): String
    Definition Classes
    AnyRef → Any
  40. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  41. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  42. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )
  43. object Cont extends Serializable

Inherited from Serializable

Inherited from Serializable

Inherited from AnyRef

Inherited from Any

Constructors

Miscellaneous utilities

Collection operation steps

Ungrouped