choice4<E> function

Choice4Parser<E> choice4<E>(
  1. Parser<E> p1,
  2. Parser<E> p2,
  3. Parser<E> p3,
  4. Parser<E> p4,
)

Creates the Choice4Parser parser.

Implementation

Choice4Parser<E> choice4<E>(
        Parser<E> p1, Parser<E> p2, Parser<E> p3, Parser<E> p4) =>
    Choice4Parser(p1, p2, p3, p4);