implicit final class PrinterOps[Err, Out, Value] extends AnyVal
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- PrinterOps
- AnyVal
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- Any
- final def ##: Int
- Definition Classes
- Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- Any
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def getClass(): Class[_ <: AnyVal]
- Definition Classes
- AnyVal → Any
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- def toString(): String
- Definition Classes
- Any
- 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.
- 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.
- 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
- def ~>(that: => Printer[Err, Out, Value]): Printer[Err, Out, Value]
Symbolic alias for zipRight