Skip to content

Commit

Permalink
preparing version 6.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
lemire committed Jan 28, 2024
1 parent fade235 commit 3ab68b6
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -165,6 +165,16 @@ constexpr double constexptest() {
}
```
## C++23: Fixed width floating-point types
The library also supports fixed-width floating-point types such as `std::float32_t` and `std::float64_t`. E.g., you can write:
```C++
std::float32_t result;
auto answer = fast_float::from_chars(f.data(), f.data() + f.size(), result);
``````
## Non-ASCII Inputs
We also support UTF-16 and UTF-32 inputs, as well as ASCII/UTF-8, as in the following example:
Expand Down Expand Up @@ -371,7 +381,7 @@ the command line help.

You may directly download automatically generated single-header files:

https://github.com/fastfloat/fast_float/releases/download/v6.0.0/fast_float.h
https://github.com/fastfloat/fast_float/releases/download/v6.1.0/fast_float.h

## RFC 7159

Expand Down

0 comments on commit 3ab68b6

Please sign in to comment.