absl::StrAppend

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

Parameters

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