oneOrMore

fun <T> oneOrMore(parser: Parser<T>): Parser<List<T>>

Run the same parser many times and return results till a failure. This ensures that at least one parse happens.