absl::StrCat

Merges a single arithmetic value into a string.

Synopsis

Declared in <absl/strings/str_cat.h>

template<typename T>
[[nodiscard]]
std::string
StrCat(/* implementation-defined */ a);

Return Value

The string representation of a.

NOTE

The return value should not be discarded.

Parameters

NameDescription
aThe value to convert.