1The fast_float library provides fast header-only implementations for the C++
2from_chars functions for float and double types. These functions convert ASCII
3strings representing decimal values (e.g., 1.3e10) into binary types. We provide
4exact rounding (including round to even). In our experience, these fast_float
5functions many times faster than comparable number-parsing functions from
6existing C++ standard libraries.
7