choice3<E> function

Choice3Parser<E> choice3<E>(
  1. Parser<E> p1,
  2. Parser<E> p2,
  3. Parser<E> p3
)

Creates the Choice3Parser parser.

Implementation

Choice3Parser<E> choice3<E>(Parser<E> p1, Parser<E> p2, Parser<E> p3) =>
    Choice3Parser(p1, p2, p3);