c

zio.parser

AnySyntaxOps

implicit final class AnySyntaxOps[Err, In, Out] extends AnyVal

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

Instance Constructors

  1. new AnySyntaxOps(self: Syntax[Err, In, Out, Unit])

Value Members

  1. def as[Value2](value: => Value2): Syntax[Err, In, Out, Value2]

    Ignores the result of the syntax and result in 'value' instead

  2. def getClass(): Class[_ <: AnyVal]
    Definition Classes
    AnyVal → Any
  3. def zipRight[Err2 >: Err, In2 <: In, Out2 >: Out, Value2](that: => Syntax[Err2, In2, Out2, Value2]): Syntax[Err2, In2, Out2, Value2]

    Concatenates this parser with that parser, and if both succeeds, discard the first result and use the second.

  4. def ~>[Err2 >: Err, In2 <: In, Out2 >: Out, Value2](that: => Syntax[Err2, In2, Out2, Value2]): Syntax[Err2, In2, Out2, Value2]

    Symbolic alias for zipRight