ManyParser<E> constructor

ManyParser<E>(
  1. Parser<E> p
)

Implementation

ManyParser(this.p) {
  label = _quote(p) + '*';
  quote = false;
}