Function le_f64
fn le_f64<Input, Error>(input: &mut Input) -> Result<f64, Error>
where
Input: StreamIsPartial + Stream<Token = u8>,
Error: ParserError<Input>
Recognizes a little endian 8 bytes floating point number.
Complete version: Returns an error if there is not enough input data.
[Partial version][crate::_topic::partial]: Will return Err(winnow::error::ErrMode::Incomplete(_)) if there is not enough data.
Example
# use ;
# use *;
# use Size;
use le_f64;
assert_eq!;
assert!;
# use ;
# use *;
# use Partial;
use le_f64;
assert_eq!;
assert_eq!;