[][src]Function pear::combinators::last_of_many

pub fn last_of_many<I, O, P>(input: &mut Pear<I>, p: P) -> Result<O, I> where
    I: Input,
    P: FnMut(&mut Pear<I>) -> Result<O, I>, 

Parses p until p fails, returning the last successful p.