around<E1, E2> function

AroundParser<E1, E2> around<E1, E2>(
  1. Parser<E1> p1,
  2. Parser p2,
  3. Parser<E2> p3
)

Creates the AroundParser parser.

Implementation

AroundParser<E1, E2> around<E1, E2>(Parser<E1> p1, Parser p2, Parser<E2> p3) =>
    AroundParser(p1, p2, p3);