choice6<E> function

Choice6Parser<E> choice6<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,
)

Creates the Choice6Parser parser.

Implementation

Choice6Parser<E> choice6<E>(Parser<E> p1, Parser<E> p2, Parser<E> p3,
        Parser<E> p4, Parser<E> p5, Parser<E> p6) =>
    Choice6Parser(p1, p2, p3, p4, p5, p6);