Function recognize_float
fn recognize_float<T, E: ParseError<T>>(input: T) -> IResult<T, T, E>
where
T: Clone + Offset + Input,
<T as Input>::Item: AsChar
Recognizes floating point number in a byte string and returns the corresponding slice.
Complete version: Can parse until the end of input.
# use ;
# use Size;
use recognize_float;
let parser = ;
assert_eq!;
assert_eq!;
assert_eq!;
assert_eq!;