You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
`to_chars` is a set of functions that attempts to convert `value` into a character buffer specified by `[first, last)`.
13
-
The result of `to_chars` is `to_chars_result` which on success returns `ptr` equal to one-past-the-end of the characters written and `ec == std::errc()` and on failure returns `std::errc::result_out_of_range` and `ptr == last`.
13
+
The result of `to_chars` is `to_chars_result` which on success returns `ptr` equal to one-past-the-end of the characters written and `ec == std::errc()` and on failure returns `std::errc::value_too_large` and `ptr == last`.
14
14
`to_chars` does not null-terminate the returned characters.
15
15
16
16
== Definitions
@@ -55,7 +55,7 @@ See <<chars_format overview>> for description.
0 commit comments