Function le_f32

fn le_f32<I, E: ParseError<I>>() -> impl Parser<I, Output = f32, Error = E>
where
    I: Input<Item = u8>

Recognizes a little endian 4 bytes floating point number.

Streaming version: Will return Err(nom::Err::Incomplete(_)) if there is not enough data.

# use nom::{Err, error::ErrorKind, Needed, Parser};
use nom::number::le_f32;

let parser = |s| {
  le_f32::<_, (_, ErrorKind)>().parse(s)
};

assert_eq!(parser(&[0x00, 0x00, 0x48, 0x41][..]), Ok((&b""[..], 12.5)));
assert_eq!(parser(&[0x01][..]), Err(Err::Incomplete(Needed::new(3))));