[#absl-FormatSink-Append-06] = xref:absl.adoc[absl]::xref:absl/FormatSink.adoc[FormatSink]::Append :relfileprefix: ../../ :mrdocs: `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. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- void xref:absl/FormatSink/Append-07.adoc[Append](std::string_view v); ---- [.small]#xref:absl/FormatSink/Append-07.adoc[_» more..._]# Appends `count` copies of `ch` to the format sink. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- void xref:absl/FormatSink/Append-04.adoc[Append]( size_t count, char ch); ---- [.small]#xref:absl/FormatSink/Append-04.adoc[_» more..._]# == Parameters [cols="1,4"] |=== | Name| Description | *v* | The characters to append. | *count* | The number of copies to append. | *ch* | The character to append. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#