Packages

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]]

Concrete Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. final def ++[E1 >: E, A1 >: A](that: StreamChunk[E1, A1]): StreamChunk[E1, A1]
  4. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  5. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  6. def clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )
  7. def dropWhile(pred: (A) ⇒ Boolean): StreamChunk[E, A]
  8. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  9. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  10. def filter(pred: (A) ⇒ Boolean): StreamChunk[E, A]

    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]
  12. def finalize(): Unit
    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]
  14. def flattenChunks: Stream[E, A]
  15. def foldLazy[E1 >: E, A1 >: A, S](s: S)(cont: (S) ⇒ Boolean)(f: (S, A1) ⇒ IO[E1, S]): IO[E1, S]
  16. def foldLazyChunks[E1 >: E, A1 >: A, S](s: S)(cont: (S) ⇒ Boolean)(f: (S, Chunk[A1]) ⇒ IO[E1, S]): IO[E1, S]

    Executes an effectful fold over the stream of chunks.

  17. def foldLeft[A1 >: A, S](s: S)(f: (S, A1) ⇒ S): IO[E, S]
  18. final def foreach[E1 >: E](f: (A) ⇒ IO[E1, Unit]): IO[E1, Unit]
  19. final def foreach0[E1 >: E](f: (A) ⇒ IO[E1, Boolean]): IO[E1, Unit]
  20. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  21. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  22. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  23. def map[B](f: (A) ⇒ B): StreamChunk[E, B]
  24. final def mapAccum[S1, B](s1: S1)(f1: (S1, A) ⇒ (S1, B)): StreamChunk[E, B]
  25. def mapConcat[B](f: (A) ⇒ Chunk[B]): StreamChunk[E, B]
  26. final def mapM[E1 >: E, B](f0: (A) ⇒ IO[E1, B]): StreamChunk[E1, B]
  27. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  28. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  29. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  30. final def run[E1 >: E, A0, A1 >: A, B](sink: Sink[E1, A0, Chunk[A1], B]): IO[E1, B]

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

  31. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  32. def takeWhile(pred: (A) ⇒ Boolean): StreamChunk[E, A]
  33. final def toQueue[E1 >: E, A1 >: A](capacity: Int = 1): Managed[Nothing, Queue[Take[E1, Chunk[A1]]]]
  34. final def toQueueWith[E1 >: E, A1 >: A, Z](f: (Queue[Take[E1, Chunk[A1]]]) ⇒ IO[E1, Z], capacity: Int = 1): IO[E1, Z]
  35. def toString(): String
    Definition Classes
    AnyRef → Any
  36. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  37. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  38. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )
  39. final def withEffect[E1 >: E](f0: (A) ⇒ IO[E1, Unit]): StreamChunk[E1, A]
  40. def zipWithIndex: StreamChunk[E, (A, Int)]

Inherited from AnyRef

Inherited from Any

Ungrouped