pub fn u32<I, E: ParseError<I>>(
endian: Endianness
) -> fn(_: I) -> IResult<I, u32, E>where
I: Stream<Token = u8>,
<I as Stream>::Slice: AsBytes,👎Deprecated since 0.1.0: Replaced with <code>winnow::number::u32</code>
Expand description
Recognizes an unsigned 4 byte integer
If the parameter is winnow::number::Endianness::Big, parse a big endian u32 integer,
otherwise if winnow::number::Endianness::Little parse a little endian u32 integer.
complete version: returns an error if there is not enough input data
use winnow::number::complete::u32;
let be_u32 = |s| {
u32(winnow::number::Endianness::Big)(s)
};
assert_eq!(be_u32(&b"\x00\x03\x05\x07abcefg"[..]), Ok((&b"abcefg"[..], 0x00030507)));
assert_eq!(be_u32(&b"\x01"[..]), Err(ErrMode::Backtrack(Error::new(&[0x01][..], ErrorKind::Eof))));
let le_u32 = |s| {
u32(winnow::number::Endianness::Little)(s)
};
assert_eq!(le_u32(&b"\x00\x03\x05\x07abcefg"[..]), Ok((&b"abcefg"[..], 0x07050300)));
assert_eq!(le_u32(&b"\x01"[..]), Err(ErrMode::Backtrack(Error::new(&[0x01][..], ErrorKind::Eof))));WARNING: Deprecated, replaced with winnow::number::u32