absl::StrAppend

Appends four strings or numbers to an existing string.

Synopsis

Declared in <absl/strings/str_cat.h>

void
StrAppend(
    std::string* dest,
    AlphaNum const& a,
    AlphaNum const& b,
    AlphaNum const& c,
    AlphaNum const& d);

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.