diff options
Diffstat (limited to 'libraries/fast_float/README')
-rw-r--r-- | libraries/fast_float/README | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/libraries/fast_float/README b/libraries/fast_float/README new file mode 100644 index 0000000000..5d2aa3bfa4 --- /dev/null +++ b/libraries/fast_float/README @@ -0,0 +1,7 @@ +The fast_float library provides fast header-only implementations for +the C++ from_chars functions for float and double types. These +functions convert ASCII strings representing decimal values (e.g., +1.3e10) into binary types. We provide exact rounding (including round +to even). In our experience, these fast_float functions many times +faster than comparable number-parsing functions from existing C++ +standard libraries. |