Packages

c

zio.parser.Parser.ParserError

AllBranchesFailed

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
  1. Alphabetic
  2. By Inheritance
Inherited
  1. AllBranchesFailed
  2. Serializable
  3. Product
  4. Equals
  5. ParserError
  6. AnyRef
  7. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new AllBranchesFailed(left: ParserError[Err], right: ParserError[Err])

Value Members

  1. def addFailedBranch[Err2 >: Err](error: ParserError[Err2]): ParserError[Err2]
    Definition Classes
    ParserError
  2. val left: ParserError[Err]
  3. def map[Err2](f: (Err) => Err2): ParserError[Err2]
    Definition Classes
    ParserError
  4. def productElementNames: Iterator[String]
    Definition Classes
    Product
  5. val right: ParserError[Err]