c

zio.parser

SyntaxOps

implicit class SyntaxOps[Err, In, Out, Value] extends AnyRef

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

Instance Constructors

  1. new SyntaxOps(self: Syntax[Err, In, Out, Value])

Value Members

  1. def of[Value2 <: Product](implicit conversion: TupleConversion[Value2, Value], ev: =:=[Value, Value]): Syntax[Err, In, Out, Value2]

    Transforms the syntax of a tuple to a syntax of a given case class

  2. final def zip[Err2 >: Err, In2 <: In, Out2 >: Out, Value2, ZippedValue](that: => Syntax[Err2, In2, Out2, Value2])(implicit unzippableValue: In[Value, Value2, ZippedValue], zippableResult: Out[Value, Value2, ZippedValue]): Syntax[Err2, In2, Out2, ZippedValue]

    Concatenates this syntax with 'that' syntax.

    Concatenates this syntax with 'that' syntax. In case both parser succeeds, the result is a pair of the results. The printer destructures a pair and prints the left value with this, the right value with 'that'.

  3. final def ~[Err2 >: Err, In2 <: In, Out2 >: Out, Value2, ZippedValue](that: => Syntax[Err2, In2, Out2, Value2])(implicit unzippableValue: In[Value, Value2, ZippedValue], zippableResult: Out[Value, Value2, ZippedValue]): Syntax[Err2, In2, Out2, ZippedValue]

    Symbolic alias for zip