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

Name

Description

dest

The string to append to.

a

The first value to append.

b

The second value to append.

c

The third value to append.

d

The fourth value to append.

Created with MrDocs