pub fn float(s: &str) -> IResult<&str, FloatLiteral>
Expand description

Parser for double-precision floating-point literals

Input must contain a . for this parser to succeed. Doing so prevents it from matching integers.