2
0
mirror of https://github.com/boostorg/uuid.git synced 2026-01-19 04:42:16 +00:00

Update uuid_io.adoc

This commit is contained in:
ivanpanch
2025-08-09 18:38:19 +02:00
committed by GitHub
parent c1cd057ee7
commit 5fa762c76f

View File

@@ -135,7 +135,7 @@ template<class Ch>
bool to_chars( uuid const& u, Ch* first, Ch* last ) noexcept;
```
Requires: :: `Ch` must be a character type (one of `char`, `wchar_t`, `char8_t`, `char16_t`, `char32_t`.)
Requires: :: `Ch` must be a character type (one of `char`, `wchar_t`, `char8_t`, `char16_t`, `char32_t`).
Effects: :: If `last - first >= 36`, writes the string representation of `u` (exactly 36 characters, not null terminated) into the buffer starting at `first` and returns `true`. Otherwise, returns `false`.