pub fn zero_or_more<'a, P, A: Clone + 'a, S: Clone + 'a>(
parser: P,
) -> BoxedParser<'a, Vec<A>, S>where
P: Parser<'a, Output = A, State = S> + 'a,Expand description
Run the parser zero or more times and combine each output into a vector of outputs.