c

scalaz.stream

WyeSyntax

final class WyeSyntax[I, I2, O] extends AnyVal

This class provides infix syntax specific to Wye. We put these here rather than trying to cram them into Process itself using implicit equality witnesses. This doesn't work out so well due to variance issues.

Source
wye.scala
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. WyeSyntax
  2. AnyVal
  3. Any
Implicitly
  1. by any2stringadd
  2. by StringFormat
  3. by Ensuring
  4. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new WyeSyntax(self: Wye[I, I2, O])

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    Any
  2. final def ##(): Int
    Definition Classes
    Any
  3. def +(other: String): String
    Implicit
    This member is added by an implicit conversion from WyeSyntax[I, I2, O] to any2stringadd[WyeSyntax[I, I2, O]] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  4. def ->[B](y: B): (WyeSyntax[I, I2, O], B)
    Implicit
    This member is added by an implicit conversion from WyeSyntax[I, I2, O] to ArrowAssoc[WyeSyntax[I, I2, O]] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  5. final def ==(arg0: Any): Boolean
    Definition Classes
    Any
  6. def apply(input: Iterable[I], input2: Iterable[I2]): IndexedSeq[O]

    Apply a Wye to two Iterable inputs.

  7. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  8. def attachL[I0](f: Process1[I0, I]): Wye[I0, I2, O]

    Transform the left input of the given Wye using a Process1.

  9. def attachR[I1](f: Process1[I1, I2]): Wye[I, I1, O]

    Transform the right input of the given Wye using a Process1.

  10. def contramapL[I0](f: (I0) ⇒ I): Wye[I0, I2, O]

    Transform the left input to a Wye.

  11. def contramapR[I3](f: (I3) ⇒ I2): Wye[I, I3, O]

    Transform the right input to a Wye.

  12. def detach1L: Wye[I, I2, O]

    Converting requests for the left input into normal termination.

    Converting requests for the left input into normal termination. Note that Both requests are rewritten to fetch from the only input.

  13. def detach1R: Wye[I, I2, O]

    Converting requests for the right input into normal termination.

    Converting requests for the right input into normal termination. Note that Both requests are rewritten to fetch from the only input.

  14. def ensuring(cond: (WyeSyntax[I, I2, O]) ⇒ Boolean, msg: ⇒ Any): WyeSyntax[I, I2, O]
    Implicit
    This member is added by an implicit conversion from WyeSyntax[I, I2, O] to Ensuring[WyeSyntax[I, I2, O]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  15. def ensuring(cond: (WyeSyntax[I, I2, O]) ⇒ Boolean): WyeSyntax[I, I2, O]
    Implicit
    This member is added by an implicit conversion from WyeSyntax[I, I2, O] to Ensuring[WyeSyntax[I, I2, O]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  16. def ensuring(cond: Boolean, msg: ⇒ Any): WyeSyntax[I, I2, O]
    Implicit
    This member is added by an implicit conversion from WyeSyntax[I, I2, O] to Ensuring[WyeSyntax[I, I2, O]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  17. def ensuring(cond: Boolean): WyeSyntax[I, I2, O]
    Implicit
    This member is added by an implicit conversion from WyeSyntax[I, I2, O] to Ensuring[WyeSyntax[I, I2, O]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  18. def formatted(fmtstr: String): String
    Implicit
    This member is added by an implicit conversion from WyeSyntax[I, I2, O] to StringFormat[WyeSyntax[I, I2, O]] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  19. def getClass(): Class[_ <: AnyVal]
    Definition Classes
    AnyVal → Any
  20. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  21. val self: Wye[I, I2, O]
  22. def toString(): String
    Definition Classes
    Any
  23. def [B](y: B): (WyeSyntax[I, I2, O], B)
    Implicit
    This member is added by an implicit conversion from WyeSyntax[I, I2, O] to ArrowAssoc[WyeSyntax[I, I2, O]] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc

Inherited from AnyVal

Inherited from Any

Inherited by implicit conversion any2stringadd from WyeSyntax[I, I2, O] to any2stringadd[WyeSyntax[I, I2, O]]

Inherited by implicit conversion StringFormat from WyeSyntax[I, I2, O] to StringFormat[WyeSyntax[I, I2, O]]

Inherited by implicit conversion Ensuring from WyeSyntax[I, I2, O] to Ensuring[WyeSyntax[I, I2, O]]

Inherited by implicit conversion ArrowAssoc from WyeSyntax[I, I2, O] to ArrowAssoc[WyeSyntax[I, I2, O]]

Ungrouped