Lines Matching defs:be_f64
1178 /// use nom::number::complete::be_f64;
1181 /// be_f64(s)
1188 pub fn be_f64<I, E: ParseError<I>>(input: I) -> IResult<I, f64, E>
1299 /// let be_f64 = |s| {
1303 /// assert_eq!(be_f64(&[0x40, 0x29, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00][..]), Ok((&b""[..], 12.5)));
1304 /// assert_eq!(be_f64(&b"abc"[..]), Err(Err::Error((&b"abc"[..], ErrorKind::Eof))));
1319 crate::number::Endianness::Big => be_f64,
1322 crate::number::Endianness::Native => be_f64,
1913 be_f64(&[0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00][..]),
1917 be_f64(&[0x41, 0xa6, 0x23, 0xfb, 0x10, 0x00, 0x00, 0x00][..]),