Class

scalaz.zio.stream.Sink

InvariantOps

Related Doc: package Sink

Permalink

implicit class InvariantOps[E, A0, A, B] extends AnyRef

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

Instance Constructors

  1. new InvariantOps(self: Sink[E, A, A, B])

    Permalink

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, C](that: Sink[E1, A, A, C]): Sink[E1, A, A, C]

    Permalink
  4. final def <*[E1 >: E, C](that: Sink[E1, A, A, C]): Sink[E1, A, A, B]

    Permalink
  5. final def <|[E1, B1 >: B](that: Sink[E1, A, A, B1]): Sink[E1, A, A, B1]

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

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

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

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  9. final def eq(arg0: AnyRef): Boolean

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

    Permalink
    Definition Classes
    AnyRef → Any
  11. def finalize(): Unit

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

    Permalink
  13. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  14. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  15. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  16. final def ne(arg0: AnyRef): Boolean

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

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

    Permalink
    Definition Classes
    AnyRef
  19. final def orElse[E1, C](that: Sink[E1, A, A, C]): Sink[E1, A, A, Either[B, C]]

    Permalink

    Runs both sinks in parallel on the same input.

    Runs both sinks in parallel on the same input. If the left one succeeds, its value will be produced. Otherwise, whatever the right one produces will be produced. If the right one succeeds before the left one, it accumulates the full input until the left one fails, so it can return it as the remainder. This allows this combinator to function like choice in parser combinator libraries.

    Left: ============== FAIL! Right: ===== SUCCEEDS! xxxxxxxxx <- Should NOT be consumed

  20. final def repeat: Sink[E, A, A, List[B]]

    Permalink
  21. final def repeat0[S](z: S)(f: (S, B) ⇒ S): Sink[E, A, A, S]

    Permalink
  22. final def repeatN(i: Int): Sink[E, A, A, List[B]]

    Permalink
  23. final def repeatWhile(p: (A) ⇒ Boolean): Sink[E, A, A, List[B]]

    Permalink
  24. final def repeatWhile0[S](p: (A) ⇒ Boolean)(z: S)(f: (S, B) ⇒ S): Sink[E, A, A, S]

    Permalink
  25. final def seq[E1 >: E, C](that: Sink[E1, A, A, C]): Sink[E1, A, A, (B, C)]

    Permalink
  26. final def seqWith[E1 >: E, C, D](that: Sink[E1, A, A, C])(f: (B, C) ⇒ D): Sink[E1, A, A, D]

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

    Permalink
    Definition Classes
    AnyRef
  28. def toString(): String

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

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  32. final def ~[E1 >: E, C](that: Sink[E1, A, A, C]): Sink[E1, A, A, (B, C)]

    Permalink

Inherited from AnyRef

Inherited from Any

Ungrouped