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
111ad80417
commit
ffe3619894
1 changed files with 1 additions and 1 deletions
|
@ -2,7 +2,7 @@
|
|||
[](https://cloud.drone.io/lemire/fast_double_parser) [](https://ci.appveyor.com/project/lemire/fast-double-parser/branch/master)/badge.svg)/badge.svg)[](https://cirrus-ci.com/github/lemire/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 10000000000. 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 ASCII 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`.
|
||||
|
||||
We support all major compilers: Visual Studio, GNU GCC, LLVM Clang. We require C++11.
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue