Lines Matching defs:le_f64
1200 /// use nom::number::streaming::le_f64;
1203 /// le_f64::<_, (_, ErrorKind)>(s)
1210 pub fn le_f64<I, E: ParseError<I>>(input: I) -> IResult<I, f64, E>
1276 /// let le_f64 = |s| {
1280 /// assert_eq!(le_f64(&[0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x29, 0x40][..]), Ok((&b""[..], 12.5)));
1281 /// assert_eq!(le_f64(&b"abc"[..]), Err(Err::Incomplete(Needed::new(5))));
1290 crate::number::Endianness::Little => le_f64,
1294 crate::number::Endianness::Native => le_f64,
2013 le_f64(&[0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00][..]),
2017 le_f64(&[0x00, 0x00, 0x00, 0x10, 0xfb, 0x23, 0xa6, 0x41][..]),