[#absl-StrCat-0d2] = xref:absl.adoc[absl]::StrCat :relfileprefix: ../ :mrdocs: Merges a single arithmetic value into a string. == Synopsis Declared in `<absl/strings/str_cat.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template<typename T> [[nodiscard]] std::string StrCat(/* implementation-defined */ a); ---- == Return Value The string representation of `a`. [NOTE] ==== The return value https://en.cppreference.com/cpp/language/attributes/nodiscard[should not be discarded^]. ==== == Parameters [cols="1,4"] |=== | Name| Description | *a* | The value to convert. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#