pub fn repeat<'a, A: Clone + 'a, P, S: Clone + 'a>( times: usize, parser: P, ) -> BoxedParser<'a, Vec<A>, S>where P: Parser<'a, Output = A, State = S> + 'a,
Repeat a parser n times