andThen<E3> method

Tuple3Parser<E1, E2, E3> andThen<E3>(
  1. Parser<E3> p
)

Creates the Tuple3Parser parser.

final p = p1.andThen(p2).andThen(p3);

Implementation

Tuple3Parser<E1, E2, E3> andThen<E3>(Parser<E3> p) => Tuple3Parser(p1, p2, p);