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
*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.*
14
+
15
+
13
16
The fast_float library provides fast header-only implementations for the C++
14
17
from_chars functions for `float` and `double` types as well as integer types.
15
18
These functions convert ASCII strings representing decimal values (e.g.,
16
19
`1.3e10`) into binary types. We provide exact rounding (including round to
17
20
even). In our experience, these `fast_float` functions many times faster than
18
21
comparable number-parsing functions from existing C++ standard libraries.
19
22
23
+
20
24
Specifically, `fast_float` provides the following two functions to parse
21
25
floating-point numbers with a C++17-like syntax (the library itself only
0 commit comments