You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+4Lines changed: 4 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -3,13 +3,17 @@
3
3
4
4
[](https://github.com/fastfloat/fast_float/actions/workflows/ubuntu22.yml)
5
5
6
+
*Note: This library is for C++ users. C programmers should consider [ffc.h](https://github.com/kolemannix/ffc.h). It is a high-performance port of fast_float to C.*
7
+
8
+
6
9
The fast_float library provides fast header-only implementations for the C++
7
10
from_chars functions for `float` and `double` types as well as integer types.
8
11
These functions convert ASCII strings representing decimal values (e.g.,
9
12
`1.3e10`) into binary types. We provide exact rounding (including round to
10
13
even). In our experience, these `fast_float` functions many times faster than
11
14
comparable number-parsing functions from existing C++ standard libraries.
12
15
16
+
13
17
Specifically, `fast_float` provides the following two functions to parse
14
18
floating-point numbers with a C++17-like syntax (the library itself only
0 commit comments