c

zio.parser

PrinterOps

implicit final class PrinterOps[Err, Out, Value] extends AnyVal

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

Instance Constructors

  1. new PrinterOps(self: Printer[Err, Out, Value])

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 asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def getClass(): Class[_ <: AnyVal]
    Definition Classes
    AnyVal → Any
  6. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  7. def toString(): String
    Definition Classes
    Any
  8. final def zip[Err2 >: Err, Out2 >: Out, Value2, ZippedValue](that: => Printer[Err2, Out2, Value2])(implicit unzippableValue: In[Value, Value2, ZippedValue]): Printer[Err2, Out2, ZippedValue]

    Take a pair to be printed, print the left value with this, and the right value with 'that'.

    Take a pair to be printed, print the left value with this, and the right value with 'that'. The result is a pair of both printer's results.

  9. def zipRight(that: => Printer[Err, Out, Value]): Printer[Err, Out, Value]

    Print this, then print that and use the second printer's result value.

    Print this, then print that and use the second printer's result value. Both printers get the same value to be printed.

  10. final def ~[Err2 >: Err, Out2 >: Out, Value2, ZippedValue](that: => Printer[Err2, Out2, Value2])(implicit zippableValue: In[Value, Value2, ZippedValue]): Printer[Err2, Out2, ZippedValue]

    Symbolic alias for zip

  11. def ~>(that: => Printer[Err, Out, Value]): Printer[Err, Out, Value]

    Symbolic alias for zipRight

Inherited from AnyVal

Inherited from Any

Ungrouped