Function i8
fn i8<I, E: ParseError<I>>() -> impl Parser<I, Output = i8, Error = E>
where
I: Input<Item = u8>
Recognizes a signed 1 byte integer
Note that endianness does not apply to 1 byte numbers.
Streaming version: Will return Err(nom::Err::Incomplete(_)) if there is not enough data.
# use ;
# use Size;
use i8;
let parser = ;
assert_eq!;
assert_eq!;