Packages

c

zio.stream.ZSink

NoRemainderOps

implicit final class NoRemainderOps[R, E, A, B] extends AnyVal

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. NoRemainderOps
  2. AnyVal
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new NoRemainderOps(sink: ZSink[R, E, Nothing, A, B])

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    Any
  2. final def ##(): Int
    Definition Classes
    Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    Any
  4. final def ?: ZSink[R, E, A, A, Option[B]]

    Returns a new sink that tries to produce the B, but if there is an error in stepping or extraction, produces None.

  5. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  6. final def collectAll: ZSink[R, E, A, A, List[B]]

    Accumulates the output into a list.

  7. final def collectAllN(i: Int): ZSink[R, E, A, A, List[B]]

    Accumulates the output into a list of maximum size i.

  8. final def collectAllWhile(p: (A) => Boolean): ZSink[R, E, A, A, List[B]]

    Accumulates into a list for as long as incoming values verify predicate p.

  9. final def collectAllWhileWith[S](p: (A) => Boolean)(z: S)(f: (S, B) => S): ZSink[R, E, A, A, S]

    Accumulates into a value of type S for as long as incoming values verify predicate p.

  10. final def collectAllWith[S](z: S)(f: (S, B) => S): ZSink[R, E, A, A, S]

    Accumulates the output into a value of type S.

  11. final def collectUntil[S](z: S)(p: (S) => Boolean)(f: (S, B) => S): ZSink[R, E, A, A, S]

    Accumulates into a value of type S for as long as the state satisfies the predicate p.

  12. def getClass(): Class[_ <: AnyVal]
    Definition Classes
    AnyVal → Any
  13. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  14. final def optional: ZSink[R, E, A, A, Option[B]]

    A named alias for ?.

  15. val sink: ZSink[R, E, Nothing, A, B]
  16. def toString(): String
    Definition Classes
    Any

Inherited from AnyVal

Inherited from Any

Ungrouped