pub fn take<I, O, C, E: ParseError<(I, usize)>>(
count: C,
) -> impl Fn((I, usize)) -> IResult<(I, usize), O, E>
👎Deprecated since 8.0.0: Replaced with
nom8::bits::take
with input wrapped in nom8::input::Streaming
Expand description
Generates a parser taking count
bits
WARNING: Deprecated, replaced with nom8::bits::take
with input wrapped in nom8::input::Streaming