Function nom::number::complete::be_i32 [−][src]
pub fn be_i32<'a, E: ParseError<&'a [u8]>>(
i: &'a [u8]
) -> IResult<&'a [u8], i32, E>
Recognizes a big endian signed 4 bytes integer
complete version: returns an error if there is not enough input data
use nom::number::complete::be_i32; let parser = |s| { be_i32(s) }; assert_eq!(parser(b"\x00\x03\x05\x07abcefg"), Ok((&b"abcefg"[..], 0x00030507))); assert_eq!(parser(b"\x01"), Err(Err::Error((&[0x01][..], ErrorKind::Eof))));