[#absl-StrAppend-0f] = xref:absl.adoc[absl]::StrAppend :relfileprefix: ../ :mrdocs: `StrAppend` overloads == Synopses Declared in `<absl/strings/str_cat.h>` Appends nothing to the destination string. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- void xref:absl/StrAppend-07.adoc[StrAppend](std::string* dest); ---- [.small]#xref:absl/StrAppend-07.adoc[_» more..._]# Appends a single string or number to an existing string. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- void xref:absl/StrAppend-0e6.adoc[StrAppend]( std::string* dest, xref:absl/AlphaNum.adoc[AlphaNum] const& a); ---- [.small]#xref:absl/StrAppend-0e6.adoc[_» more..._]# Appends two strings or numbers to an existing string. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- void xref:absl/StrAppend-0b3.adoc[StrAppend]( std::string* dest, xref:absl/AlphaNum.adoc[AlphaNum] const& a, xref:absl/AlphaNum.adoc[AlphaNum] const& b); ---- [.small]#xref:absl/StrAppend-0b3.adoc[_» more..._]# Appends three strings or numbers to an existing string. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- void xref:absl/StrAppend-0ee.adoc[StrAppend]( std::string* dest, xref:absl/AlphaNum.adoc[AlphaNum] const& a, xref:absl/AlphaNum.adoc[AlphaNum] const& b, xref:absl/AlphaNum.adoc[AlphaNum] const& c); ---- [.small]#xref:absl/StrAppend-0ee.adoc[_» more..._]# Appends four strings or numbers to an existing string. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- void xref:absl/StrAppend-0b9.adoc[StrAppend]( std::string* dest, xref:absl/AlphaNum.adoc[AlphaNum] const& a, xref:absl/AlphaNum.adoc[AlphaNum] const& b, xref:absl/AlphaNum.adoc[AlphaNum] const& c, xref:absl/AlphaNum.adoc[AlphaNum] const& d); ---- [.small]#xref:absl/StrAppend-0b9.adoc[_» more..._]# Appends five or more strings or numbers to an existing string. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template<typename... AV> void xref:absl/StrAppend-08.adoc[StrAppend]( std::string* dest, xref:absl/AlphaNum.adoc[AlphaNum] const& a, xref:absl/AlphaNum.adoc[AlphaNum] const& b, xref:absl/AlphaNum.adoc[AlphaNum] const& c, xref:absl/AlphaNum.adoc[AlphaNum] const& d, xref:absl/AlphaNum.adoc[AlphaNum] const& e, AV const&... args); ---- [.small]#xref:absl/StrAppend-08.adoc[_» more..._]# == Parameters [cols="1,4"] |=== | Name| Description | *dest* | The destination string. | *a* | The value to append. | *b* | The second value to append. | *c* | The third value to append. | *d* | The fourth value to append. | *e* | The fifth value to append. | *args* | Any additional values to append. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#