mirror of
https://github.com/lemire/fast_double_parser.git
synced 2025-04-03 20:04:57 +00:00
Update README.md
This commit is contained in:
parent
e111a4c67b
commit
0a98f0e097
1 changed files with 1 additions and 1 deletions
|
@ -1,5 +1,5 @@
|
|||
# fast_double_parser
|
||||
Fast function to parse strings containing decimal numbers into double-precision (binary64) floating-point values. That is, given the string "1.0e10", it should return a 64-bit floating-point value equal to 100. We do not sacrifice accuracy. The function will match exactly (down the smallest bit) the result of a standard function like strtod.
|
||||
Fast function to parse strings containing decimal numbers into double-precision (binary64) floating-point values. That is, given the string "1.0e10", it should return a 64-bit floating-point value equal to 10000000000. We do not sacrifice accuracy. The function will match exactly (down the smallest bit) the result of a standard function like strtod.
|
||||
|
||||
## Why should I expect this function to be faster?
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue