Lines Matching refs:IResult
7 use crate::internal::{IResult, Parser};
32 ) -> impl FnMut(I) -> IResult<I, (O1, O2), E> in pair()
66 ) -> impl FnMut(I) -> IResult<I, O2, E> in preceded()
100 ) -> impl FnMut(I) -> IResult<I, O1, E> in terminated()
137 ) -> impl FnMut(I) -> IResult<I, (O1, O3), E> in separated_pair()
176 ) -> impl FnMut(I) -> IResult<I, O2, E> in delimited()
194 fn parse(&mut self, input: I) -> IResult<I, O, E>; in parse()
200 fn parse(&mut self, input: Input) -> IResult<Input, (Output,), Error> { in parse()
226 fn parse(&mut self, input: Input) -> IResult<Input, ( $($ty),+ ), Error> {
259 fn parse(&mut self, input: I) -> IResult<I, (), E> { in parse()
277 ) -> impl FnMut(I) -> IResult<I, O, E> { in tuple()