buildChoice<R> function
Implementation
Parser<R> buildChoice<R>(List<Parser<R>> parsers) =>
parsers.length == 1 ? parsers.first : parsers.toChoiceParser();
Parser<R> buildChoice<R>(List<Parser<R>> parsers) =>
parsers.length == 1 ? parsers.first : parsers.toChoiceParser();