Append overloads
Declared in <absl/strings/str_format.h>
Overload of FormatSink::Append() for appending the characters of a string view to a format sink.
void
Append(std::string_view v);
» more...
Appends count copies of ch to the format sink.
void
Append(
size_t count,
char ch);
» more...
| Name | Description |
|---|---|
| v | The characters to append. |
| count | The number of copies to append. |
| ch | The character to append. |