implicit final class AnyParserOps[Err, In] extends AnyVal
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- AnyParserOps
- AnyVal
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Value Members
- def getClass(): Class[_ <: AnyVal]
- Definition Classes
- AnyVal → Any
- def zipRight[Err2 >: Err, In2 <: In, Result](that: => Parser[Err2, In2, Result]): Parser[Err2, In2, Result]
Concatenates this parser with that parser, and if both succeeds, discard the first result and use the second.
- def ~>[Err2 >: Err, In2 <: In, Result](that: => Parser[Err2, In2, Result]): Parser[Err2, In2, Result]
Symbolic alias for zipRight