many1

val <I : Any, O, U : Any> Parser<I, O, U>.many1: Parser<I, List<O>, U>

One-or-more: runs this parser repeatedly until it fails. Fails if this parser does not match at least once.

Sugar for pMany1: a.many1 is equivalent to pMany1(a).