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. NotNull
  4. Any
Implicitly
  1. by any2stringadd
  2. by any2stringfmt
  3. by any2ArrowAssoc
  4. by any2Ensuring
  1. Hide All
  2. Show all
Learn more about member selection
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 information
    This member is added by an implicit conversion from WyeSyntax[I, I2, O] to StringAdd performed by method any2stringadd in scala.Predef.
    Definition Classes
    StringAdd
  4. def ->[B](y: B): (WyeSyntax[I, I2, O], B)

    Implicit information
    This member is added by an implicit conversion from WyeSyntax[I, I2, O] to ArrowAssoc[WyeSyntax[I, I2, O]] performed by method any2ArrowAssoc 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 information
    This member is added by an implicit conversion from WyeSyntax[I, I2, O] to Ensuring[WyeSyntax[I, I2, O]] performed by method any2Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  15. def ensuring(cond: (WyeSyntax[I, I2, O]) ⇒ Boolean): WyeSyntax[I, I2, O]

    Implicit information
    This member is added by an implicit conversion from WyeSyntax[I, I2, O] to Ensuring[WyeSyntax[I, I2, O]] performed by method any2Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  16. def ensuring(cond: Boolean, msg: ⇒ Any): WyeSyntax[I, I2, O]

    Implicit information
    This member is added by an implicit conversion from WyeSyntax[I, I2, O] to Ensuring[WyeSyntax[I, I2, O]] performed by method any2Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  17. def ensuring(cond: Boolean): WyeSyntax[I, I2, O]

    Implicit information
    This member is added by an implicit conversion from WyeSyntax[I, I2, O] to Ensuring[WyeSyntax[I, I2, O]] performed by method any2Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  18. def formatted(fmtstr: String): String

    Implicit information
    This member is added by an implicit conversion from WyeSyntax[I, I2, O] to StringFormat performed by method any2stringfmt 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 information
    This member is added by an implicit conversion from WyeSyntax[I, I2, O] to ArrowAssoc[WyeSyntax[I, I2, O]] performed by method any2ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc

Shadowed Implicit Value Members

  1. val self: Any

    Implicit information
    This member is added by an implicit conversion from WyeSyntax[I, I2, O] to StringAdd performed by method any2stringadd in scala.Predef.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (wyeSyntax: StringAdd).self
    Definition Classes
    StringAdd
  2. val self: Any

    Implicit information
    This member is added by an implicit conversion from WyeSyntax[I, I2, O] to StringFormat performed by method any2stringfmt in scala.Predef.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (wyeSyntax: StringFormat).self
    Definition Classes
    StringFormat

Deprecated Value Members

  1. def x: WyeSyntax[I, I2, O]

    Implicit information
    This member is added by an implicit conversion from WyeSyntax[I, I2, O] to ArrowAssoc[WyeSyntax[I, I2, O]] performed by method any2ArrowAssoc in scala.Predef.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (wyeSyntax: ArrowAssoc[WyeSyntax[I, I2, O]]).x
    Definition Classes
    ArrowAssoc
    Annotations
    @deprecated
    Deprecated

    (Since version 2.10.0) Use leftOfArrow instead

  2. def x: WyeSyntax[I, I2, O]

    Implicit information
    This member is added by an implicit conversion from WyeSyntax[I, I2, O] to Ensuring[WyeSyntax[I, I2, O]] performed by method any2Ensuring in scala.Predef.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (wyeSyntax: Ensuring[WyeSyntax[I, I2, O]]).x
    Definition Classes
    Ensuring
    Annotations
    @deprecated
    Deprecated

    (Since version 2.10.0) Use resultOfEnsuring instead

Inherited from AnyVal

Inherited from NotNull

Inherited from Any

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

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

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

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

Ungrouped