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
constexpr uuid operator()( CharIterator first, CharIterator last,
123
+
int& pos, from_chars_error& err ) const noexcept;
124
+
```
125
+
126
+
Requires: :: `CharIterator` must be an input iterator with a character value type (one of `char`, `wchar_t`, `char8_t`, `char16_t`, `char32_t`).
127
+
128
+
Effects: ::
129
+
Parses the character sequence `[first, last)` into a `uuid` and returns the result.
130
+
On error, `pos` contains the position at which parsing failed, and `err` contains the error.
131
+
On success, `err` contains `from_chars_error::none`.
132
+
133
+
NOTE: Unlike `from_chars`, this function does not allow extra input; if after a complete UUID is parsed, unconsumed characters remain, `err` is set to `from_chars_error::unexpected_extra_input`.
0 commit comments