Merges five or more strings or numbers into a single string.
Declared in <absl/strings/str_cat.h>
template<typename... AV>
[[nodiscard]]
std::string
StrCat(
AlphaNum const& a,
AlphaNum const& b,
AlphaNum const& c,
AlphaNum const& d,
AlphaNum const& e,
AV const&... args);
| 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. |