times

operator fun <I : Any, O, U : Any> Parser<I, O, U>.times(count: Int): Parser<I, List<O>, U>

Repeats this parser exactly count times, collecting outputs into a List.

Sugar for pRepeat: a * 3 is equivalent to pRepeat(3, a).