Module parse
Functions to parse floating-point numbers.
Functions
- parse_8digits Parse 8 digits, loaded as bytes in little-endian order.
- parse_inf_nan Try to parse a special, non-finite float.
- parse_number Try to parse a non-special floating point number, as well as two slices with integer and fractional parts and the parsed exponent.
- parse_partial_number Parse a partial, non-special floating point number.
- parse_scientific Parse the scientific notation component of a float.
- try_parse_19digits Parse up to 19 digits (the max that can be stored in a 64-bit integer).
- try_parse_digits Parse digits until a non-digit character is found.