Tuple3$<I, O1, O2, O3> constructor

Tuple3$<I, O1, O2, O3>(
  1. Parser<I, O1> p1,
  2. Parser<I, O2> p2,
  3. Parser<I, O3> p3
)

Implementation

Tuple3$(this.p1, this.p2, this.p3) {
  label = 'tuple3(' + [p1, p2, p3].map(Parser.quote).join(' ') + ')';
}