scalaz.stream.Process

Process1Syntax

implicit final class Process1Syntax[I, O] extends AnyVal

This class provides infix syntax specific to Process1.

Source
Process.scala
Linear Supertypes
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. Process1Syntax
  2. AnyVal
  3. NotNull
  4. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Instance Constructors

  1. new Process1Syntax(self: Process1[I, O])

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. def apply(input: Iterable[I]): IndexedSeq[O]

    Apply this Process to an Iterable.

  5. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  6. def contramap[I2](f: (I2) ⇒ I): Process1[I2, O]

    Transform the input of this Process1.

  7. def feed1(i: I): Process1[I, O]

    Feed a single input to this Process1.

  8. def getClass(): Class[_ <: AnyVal]

    Definition Classes
    AnyVal → Any
  9. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  10. def liftL[I2]: Process1[\/[I, I2], \/[O, I2]]

    Transform self to operate on the left hand side of an \/, passing through any values it receives on the right.

    Transform self to operate on the left hand side of an \/, passing through any values it receives on the right. Note that this halts whenever self halts.

  11. def liftR[I0]: Process1[\/[I0, I], \/[I0, O]]

    Transform self to operate on the right hand side of an \/, passing through any values it receives on the left.

    Transform self to operate on the right hand side of an \/, passing through any values it receives on the left. Note that this halts whenever self halts.

  12. val self: Process1[I, O]

  13. def toString(): String

    Definition Classes
    Any

Inherited from AnyVal

Inherited from NotNull

Inherited from Any

Ungrouped