final case class AllBranchesFailed[Err](left: ParserError[Err], right: ParserError[Err]) extends ParserError[Err] with Product with Serializable
All branches failed in a sequence of orElse or orElseEither parsers.
Every failed branch's failure is preserved.
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- AllBranchesFailed
- Serializable
- Product
- Equals
- ParserError
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Instance Constructors
- new AllBranchesFailed(left: ParserError[Err], right: ParserError[Err])
Value Members
- def addFailedBranch[Err2 >: Err](error: ParserError[Err2]): ParserError[Err2]
- Definition Classes
- ParserError
- val left: ParserError[Err]
- def map[Err2](f: (Err) => Err2): ParserError[Err2]
- Definition Classes
- ParserError
- def productElementNames: Iterator[String]
- Definition Classes
- Product
- val right: ParserError[Err]