Function combine::byte::num::u16 [] [src]

pub fn u16<'a, B, I>() -> U16<B, I> where
    I: RangeStream<Range = &'a [u8]>,
    I::Error: ParseError<I::Item, I::Range, I::Position>,
    B: ByteOrder

Reads a u16 out of the byte stream with the specified endianess

use combine::byteorder::LE;
use combine::Parser;
use combine::parser::byte::num::u16;

assert_eq!(u16::<LE, _>().parse(&b"\x01\0"[..]), Ok((1, &b""[..])));
assert!(u16::<LE, _>().parse(&b"\0"[..]).is_err());