Module decimal_seq
Arbitrary-precision decimal type used by fallback algorithms.
This is only used if the fast-path (native floats) and the Eisel-Lemire algorithm are unable to unambiguously determine the float.
The technique used is "Simple Decimal Conversion", developed by Nigel Tao and Ken Thompson. A detailed description of the algorithm can be found in "ParseNumberF64 by Simple Decimal Conversion", available online: https://nigeltao.github.io/blog/2020/parse-number-f64-simple.html.
Structs
- DecimalSeq A decimal floating-point number, represented as a sequence of decimal digits.
Functions
- number_of_digits_decimal_left_shift
- parse_decimal_seq Parse a big integer representation of the float as a decimal.