absl::StrAppend

Appends five or more strings or numbers to an existing string.

Synopsis

Declared in <absl/strings/str_cat.h>

template<typename... AV>
void
StrAppend(
    std::string* dest,
    AlphaNum const& a,
    AlphaNum const& b,
    AlphaNum const& c,
    AlphaNum const& d,
    AlphaNum const& e,
    AV const&... args);

Parameters

NameDescription
destThe string to append to.
aThe first value to append.
bThe second value to append.
cThe third value to append.
dThe fourth value to append.
eThe fifth value to append.
argsAny additional values to append.