repeat package:foundation

repeat the given parser a given amount of time Unlike some or many, this operation will bring more precision on how many times you wish a parser to be sequenced. ## Repeat Exactly a number of time
repeat (Exactly 6) (takeWhile ((/=) ',') <* element ',')
## Repeat Between lower `And` upper times
repeat (Between $ 1 `And` 10) (takeWhile ((/=) ',') <* element ',')