Function nom::number::streaming::le_i24 [−][src]
Expand description
Recognizes a little endian signed 3 bytes integer
streaming version: will return Err(nom::Err::Incomplete(_))
if there is not enough data
use nom::number::streaming::le_i24;
let parser = |s| {
le_i24::<(_, ErrorKind)>(s)
};
assert_eq!(parser(b"\x00\x01\x02abcd"), Ok((&b"abcd"[..], 0x020100)));
assert_eq!(parser(b"\x01"), Err(Err::Incomplete(Needed::Size(3))));