choice7<E> function

Choice7Parser<E> choice7<E>(
  1. Parser<E> p1,
  2. Parser<E> p2,
  3. Parser<E> p3,
  4. Parser<E> p4,
  5. Parser<E> p5,
  6. Parser<E> p6,
  7. Parser<E> p7,
)

Creates the Choice7Parser parser.

Implementation

Choice7Parser<E> choice7<E>(Parser<E> p1, Parser<E> p2, Parser<E> p3,
        Parser<E> p4, Parser<E> p5, Parser<E> p6, Parser<E> p7) =>
    Choice7Parser(p1, p2, p3, p4, p5, p6, p7);