[#absl-StrCat-00] = xref:absl.adoc[absl]::StrCat :relfileprefix: ../ :mrdocs: Merges five or more strings or numbers into a single string. == Synopsis Declared in `<absl/strings/str_cat.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template<typename... AV> [[nodiscard]] std::string StrCat( 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); ---- == Return Value The concatenation of the arguments. [NOTE] ==== The return value https://en.cppreference.com/cpp/language/attributes/nodiscard[should not be discarded^]. ==== == Parameters [cols="1,4"] |=== | Name| Description | *a* | The first value to concatenate. | *b* | The second value to concatenate. | *c* | The third value to concatenate. | *d* | The fourth value to concatenate. | *e* | The fifth value to concatenate. | *args* | Any additional values to concatenate. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#