Skip to content

Commit 7c19caf

Browse files
authored
Update README.md
1 parent f476bc7 commit 7c19caf

File tree

1 file changed

+6
-8
lines changed

1 file changed

+6
-8
lines changed

README.md

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -285,18 +285,19 @@ int main() {
285285
}
286286
``````
287287

288-
## Relation With Other Work
288+
## Users and Related Work
289289

290290
The fast_float library is part of:
291291

292292
- GCC (as of version 12): the `from_chars` function in GCC relies on fast_float.
293293
- [WebKit](https://github.com/WebKit/WebKit), the engine behind Safari (Apple's web browser)
294+
- [DuckDB](https://duckdb.org)
295+
- [Apache Arrow](https://github.com/apache/arrow/pull/8494) where it multiplied the number parsing speed by two or three times
296+
- [Google Jsonnet](https://github.com/google/jsonnet)
297+
- [ClickHouse](https://github.com/ClickHouse/ClickHouse)
294298

295299

296-
The fastfloat algorithm is part of the [LLVM standard libraries](https://github.com/llvm/llvm-project/commit/87c016078ad72c46505461e4ff8bfa04819fe7ba).
297-
298-
There is a [derived implementation part of AdaCore](https://github.com/AdaCore/VSS).
299-
300+
The fastfloat algorithm is part of the [LLVM standard libraries](https://github.com/llvm/llvm-project/commit/87c016078ad72c46505461e4ff8bfa04819fe7ba). There is a [derived implementation part of AdaCore](https://github.com/AdaCore/VSS).
300301

301302
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).
302303

@@ -313,9 +314,6 @@ The fast_float library provides a performance similar to that of the [fast_doubl
313314
- [There is a C# port of the fast_float library](https://github.com/CarlVerret/csFastFloat) called `csFastFloat`.
314315

315316

316-
## Users
317-
318-
The fast_float library is used by [Apache Arrow](https://github.com/apache/arrow/pull/8494) where it multiplied the number parsing speed by two or three times. It is also used by [ClickHouse](https://github.com/ClickHouse/ClickHouse) and by [Google Jsonnet](https://github.com/google/jsonnet). It is part of GCC (as of GCC 12). It is part of WebKit (Safari).
319317

320318

321319
## How fast is it?

0 commit comments

Comments
 (0)