Function come::utility::parsing::in_multispace

source ·
pub fn in_multispace<F, I, O>(f: F) -> impl FnMut(I) -> IResult<I, O>
where I: InputTakeAtPosition + Clone, <I as InputTakeAtPosition>::Item: AsChar + Clone, F: FnMut(I) -> IResult<I, O>,
Expand description

Wrap parser f, so we can ignore the multispaces around the content we want to parse.