Run a parser zero or more times. So if you wanted to parse a list of
integers, you could say:
Example
// This parser parses an int and then all of the spaces after it. constint = number({ int: (n) =>n }).skip(spaces); // We then repeat that parser zero or more times. constints: Parser<number[]> = many(int);
Run a parser zero or more times. So if you wanted to parse a list of integers, you could say:
Example