Lines Matching defs:be_f64
1150 /// use nom::number::streaming::be_f64;
1153 /// be_f64::<_, (_, ErrorKind)>(s)
1160 pub fn be_f64<I, E: ParseError<I>>(input: I) -> IResult<I, f64, E>
1269 /// let be_f64 = |s| {
1273 /// assert_eq!(be_f64(&[0x40, 0x29, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00][..]), Ok((&b""[..], 12.5)));
1274 /// assert_eq!(be_f64(&b"abc"[..]), Err(Err::Incomplete(Needed::new(5))));
1289 crate::number::Endianness::Big => be_f64,
1292 crate::number::Endianness::Native => be_f64,
1992 be_f64(&[0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00][..]),
1996 be_f64(&[0x41, 0xa6, 0x23, 0xfb, 0x10, 0x00, 0x00, 0x00][..]),