Update README.md

This commit is contained in:
Daniel Lemire 2022-06-29 14:05:21 -04:00 committed by GitHub
parent f2082bf747
commit cfb44c2592
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -112,6 +112,8 @@ int main() {
## Relation With Other Work
The fast_float library is part of GCC (as of version 12): the `from_chars` function in GCC relies on fast_float.
The fastfloat algorithm is part of the [LLVM standard libraries](https://github.com/llvm/llvm-project/commit/87c016078ad72c46505461e4ff8bfa04819fe7ba).
The fast_float library provides a performance similar to that of the [fast_double_parser](https://github.com/lemire/fast_double_parser) library but using an updated algorithm reworked from the ground up, and while offering an API more in line with the expectations of C++ programmers. The fast_double_parser library is part of the [Microsoft LightGBM machine-learning framework](https://github.com/microsoft/LightGBM).