Lines Matching defs:rest
26 /// use nom::combinator::rest;
27 /// assert_eq!(rest::<_,(_, ErrorKind)>("abc"), Ok(("", "abc")));
28 /// assert_eq!(rest::<_,(_, ErrorKind)>(""), Ok(("", "")));
31 pub fn rest<T, E: ParseError<T>>(input: T) -> IResult<T, T, E>
191 /// Creates a new parser from the output of the first parser, then apply that parser over the rest of the input.
364 rest => rest,
591 /// # use nom::combinator::rest;
599 /// rest
613 /// # use nom::combinator::rest;
622 /// rest
637 rest => rest,