Merges two strings or numbers into a single string.

Synopsis

Declared in <absl/strings/str_cat.h>

[[nodiscard]]
std::string
StrCat(
    AlphaNum const& a,
    AlphaNum const& b);

Return Value

The concatenation of the arguments.

Note

The return value should not be discarded.

Parameters

Name

Description

a

The first value to concatenate.

b

The second value to concatenate.

Created with MrDocs