๐ฌThis is a nightly-only experimental API. (
dec2flt
)Expand description
Functions to parse floating-point numbers.
Constantsยง
- MIN_
19DIGIT_ ๐INT Experimental
Functionsยง
- parse_
8digits ๐Experimental - Parse 8 digits, loaded as bytes in little-endian order.
- parse_
inf_ ๐nan Experimental - Try to parse a special, non-finite float.
- parse_
number Experimental - 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 Experimental - Parse a partial, non-special floating point number.
- parse_
scientific ๐Experimental - Parse the scientific notation component of a float.
- try_
parse_ ๐19digits Experimental - Parse up to 19 digits (the max that can be stored in a 64-bit integer).
- try_
parse_ ๐digits Experimental - Parse digits until a non-digit character is found.