Function nom::bytes::streaming::take

source ·
pub fn take<C, Input, Error: ParseError<Input>>(
    count: C
) -> impl Fn(Input) -> IResult<Input, Input, Error>
where Input: InputIter + InputTake, C: ToUsize,
Expand description

Returns an input slice containing the first N input elements (Input[..N])

§Streaming Specific

Streaming version will return a Err::Incomplete(Needed::Size(N)) where N is the argument if the input is less than the length provided

§Example

use nom::bytes::streaming::take;

fn take6(s: &str) -> IResult<&str, &str> {
  take(6usize)(s)
}

assert_eq!(take6("1234567"), Ok(("7", "123456")));
assert_eq!(take6("things"), Ok(("", "things")));
assert_eq!(take6("short"), Err(Err::Incomplete(Needed::Size(6)))); //N doesn't change
assert_eq!(take6(""), Err(Err::Incomplete(Needed::Size(6))));