Function nom::number::complete::le_i24 [−][src]
Expand description
Recognizes a little endian signed 3 bytes integer
complete version: returns an error if there is not enough input data
use nom::number::complete::le_i24;
let parser = |s| {
le_i24(s)
};
assert_eq!(parser(b"\x00\x03\x05abcefg"), Ok((&b"abcefg"[..], 0x050300)));
assert_eq!(parser(b"\x01"), Err(Err::Error((&[0x01][..], ErrorKind::Eof))));