Update README.md

This commit is contained in:
Daniel Lemire 2020-03-11 08:11:43 -04:00 committed by GitHub
parent e111a4c67b
commit 0a98f0e097
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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?