Function combine::byte::num::be_i64
[−]
[src]
pub fn be_i64<'a, I>() -> I64<BE, I> where
I: RangeStream<Range = &'a [u8]>,
Reads a i64 out of the byte stream with the specified endianess
use combine::byteorder::LE; use combine::Parser; use combine::byte::num::i64; assert_eq!(i64::<LE, _>().parse(&b"\x01\0\0\0\0\0\0\0"[..]), Ok((1, &b""[..]))); assert!(i64::<LE, _>().parse(&b"\x01\0\0\0\0\0\0"[..]).is_err());