choice5<E> function

Choice5Parser<E> choice5<E>(
  1. Parser<E> p1,
  2. Parser<E> p2,
  3. Parser<E> p3,
  4. Parser<E> p4,
  5. Parser<E> p5,
)

Creates the Choice5Parser parser.

Implementation

Choice5Parser<E> choice5<E>(
        Parser<E> p1, Parser<E> p2, Parser<E> p3, Parser<E> p4, Parser<E> p5) =>
    Choice5Parser(p1, p2, p3, p4, p5);