Trait/Object

scalaz.zio.stream

StreamChunk

Related Docs: object StreamChunk | package stream

Permalink

trait StreamChunk[+E, +A] extends AnyRef

Self Type
StreamChunk[E, A]
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. StreamChunk
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Abstract Value Members

  1. abstract val chunks: Stream[E, Chunk[A]]

    Permalink

Concrete 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 ++[E1 >: E, A1 >: A](that: StreamChunk[E1, A1]): StreamChunk[E1, A1]

    Permalink
  4. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  5. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  6. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  7. def dropWhile(pred: (A) ⇒ Boolean): StreamChunk[E, A]

    Permalink
  8. final def eq(arg0: AnyRef): Boolean

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

    Permalink
    Definition Classes
    AnyRef → Any
  10. def filter(pred: (A) ⇒ Boolean): StreamChunk[E, A]

    Permalink

    Filters this stream by the specified predicate, retaining all elements for which the predicate evaluates to true.

  11. def filterNot(pred: (A) ⇒ Boolean): StreamChunk[E, A]

    Permalink
  12. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  13. final def flatMap[E1 >: E, B](f0: (A) ⇒ StreamChunk[E1, B]): StreamChunk[E1, B]

    Permalink
  14. def flattenChunks: Stream[E, A]

    Permalink
  15. def foldLazy[E1 >: E, A1 >: A, S](s: S)(cont: (S) ⇒ Boolean)(f: (S, A1) ⇒ IO[E1, S]): IO[E1, S]

    Permalink
  16. def foldLazyChunks[E1 >: E, A1 >: A, S](s: S)(cont: (S) ⇒ Boolean)(f: (S, Chunk[A1]) ⇒ IO[E1, S]): IO[E1, S]

    Permalink

    Executes an effectful fold over the stream of chunks.

  17. def foldLeft[A1 >: A, S](s: S)(f: (S, A1) ⇒ S): IO[E, S]

    Permalink
  18. final def foreach[E1 >: E](f: (A) ⇒ IO[E1, Unit]): IO[E1, Unit]

    Permalink
  19. final def foreach0[E1 >: E](f: (A) ⇒ IO[E1, Boolean]): IO[E1, Unit]

    Permalink
  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. def map[B](f: (A) ⇒ B): StreamChunk[E, B]

    Permalink
  24. final def mapAccum[S1, B](s1: S1)(f1: (S1, A) ⇒ (S1, B)): StreamChunk[E, B]

    Permalink
  25. def mapConcat[B](f: (A) ⇒ Chunk[B]): StreamChunk[E, B]

    Permalink
  26. final def mapM[E1 >: E, B](f0: (A) ⇒ IO[E1, B]): StreamChunk[E1, B]

    Permalink
  27. final def ne(arg0: AnyRef): Boolean

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

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

    Permalink
    Definition Classes
    AnyRef
  30. final def run[E1 >: E, A0, A1 >: A, B](sink: Sink[E1, A0, Chunk[A1], B]): IO[E1, B]

    Permalink

    Runs the sink on the stream to produce either the sink's result or an error.

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

    Permalink
    Definition Classes
    AnyRef
  32. def takeWhile(pred: (A) ⇒ Boolean): StreamChunk[E, A]

    Permalink
  33. final def toQueue[E1 >: E, A1 >: A](capacity: Int = 1): Managed[Nothing, Queue[Take[E1, Chunk[A1]]]]

    Permalink
  34. final def toQueueWith[E1 >: E, A1 >: A, Z](f: (Queue[Take[E1, Chunk[A1]]]) ⇒ IO[E1, Z], capacity: Int = 1): IO[E1, Z]

    Permalink
  35. def toString(): String

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

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  39. final def withEffect[E1 >: E](f0: (A) ⇒ IO[E1, Unit]): StreamChunk[E1, A]

    Permalink
  40. def zipWithIndex: StreamChunk[E, (A, Int)]

    Permalink

Inherited from AnyRef

Inherited from Any

Ungrouped