pub fn float(s: &str) -> IResult<&str, FloatLiteral>
Parser for double-precision floating-point literals
Input must contain a . for this parser to succeed. Doing so prevents it from matching integers.
.