Function double
fn double<T, E: ParseError<T>>(input: T) -> IResult<T, f64, E>
where
T: Clone + Offset + ParseTo<f64> + Compare<&'static str> + Input + AsBytes + for<'a> Compare<&'a [u8]>,
<T as Input>::Item: AsChar,
<T as Input>::Iter: Clone
Recognizes floating point number in text format and returns a f64.
Complete version: Can parse until the end of input.
# use ;
# use Size;
use double;
let parser = ;
assert_eq!;
assert_eq!;
assert_eq!;
assert_eq!;