absl::StrAppend

Appends three 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);

Parameters

NameDescription
destThe string to append to.
aThe first value to append.
bThe second value to append.
cThe third value to append.