Documentation.

This commit is contained in:
Daniel Lemire 2020-07-14 22:00:12 -04:00
parent e8bd769527
commit ab4929a96f

View file

@ -113,6 +113,9 @@ bool isok = fast_double_parser::parse_number(string, &x);
You must check the value of the boolean (`isok`): if it is false, then the function refused to parse.
There is also a (slightly slower) version of the function called `parse_numer_inplace` that takes
three parameters: the initial pointer, the end-of-string pointer and the reference to the result.
## Users
The library has been adopted by [Google wuffs](https://github.com/google/wuffs/).