[][src]Function combine::parser::byte::num::f64

pub fn f64<'a, B, Input>() -> F64<B, Input> where
    Input: Stream<Token = u8>,
    Input::Error: ParseError<Input::Token, Input::Range, Input::Position>,
    B: ByteOrder

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

use combine::byteorder::{LE, ByteOrder};
use combine::Parser;
use combine::parser::byte::num::f64;

let mut buf = [0; 8];
LE::write_f64(&mut buf, 123.45);
assert_eq!(f64::<LE, _>().parse(&buf[..]), Ok((123.45, &b""[..])));
assert!(f64::<LE, _>().parse(&b"\x01\0\0\0\0\0\0"[..]).is_err());