pub fn prefixed_series<C, I, T, O, P>(
input: &mut Pear<I>,
prefix: T,
item: P,
seperator: T,
) -> Result<C, I>Expand description
Parses many separator delimited ps that are collectively prefixed with
prefix. Gramatically, this is:
PREFIX (item SEPERATOR)*