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);

Appends count copies of ch to the format sink.

void
Append(
    size_t count,
    char ch);

Parameters

Name

Description

v

The characters to append.

count

The number of copies to append.

ch

The character to append.

Created with MrDocs