toChoiceParser method

ChoiceParser<R> toChoiceParser({
  1. FailureJoiner<R>? failureJoiner,
})

Converts the parser in this iterable to a choice of parsers.

Implementation

ChoiceParser<R> toChoiceParser({FailureJoiner<R>? failureJoiner}) =>
    ChoiceParser<R>(this, failureJoiner: failureJoiner);