absl::FormatSink::Append

Append overloads

Synopses

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...

Parameters

NameDescription
vThe characters to append.
countThe number of copies to append.
chThe character to append.