Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions include/fast_float/fast_float.h
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@
namespace fast_float {
/**
* This function parses the character sequence [first,last) for a number. It
* parses floating-point numbers expecting a locale-indepent format equivalent
* to what is used by std::strtod in the default ("C") locale. The resulting
* floating-point value is the closest floating-point values (using either float
* or double), using the "round to even" convention for values that would
* otherwise fall right in-between two values. That is, we provide exact parsing
* according to the IEEE standard.
* parses floating-point numbers expecting a locale-independent format
* equivalent to what is used by std::strtod in the default ("C") locale. The
* resulting floating-point value is the closest floating-point values (using
* either float or double), using the "round to even" convention for values that
* would otherwise fall right in-between two values. That is, we provide exact
* parsing according to the IEEE standard.
*
* Given a successful parse, the pointer (`ptr`) in the returned value is set to
* point right after the parsed number, and the `value` referenced is set to the
Expand Down
Loading