The main parameter type for StrCat() and StrAppend().
Declared in <absl/strings/str_cat.h>
class AlphaNum;
AlphaNum provides efficient conversion of numeric, boolean, decimal, and hexadecimal values (through the Dec and Hex types) into strings. AlphaNum should only be used as a function parameter. Do not instantiate AlphaNum directly as a stack variable.
| Name | Description |
|---|---|
AlphaNum [constructor] | Constructors |
operator= [deleted] | Deleted copy assignment; AlphaNum is not assignable. |
Piece | Returns the converted string as a view. |
data | Returns a pointer to the converted string data. |
size | Returns the size of the converted string. |
| Name | Description |
|---|---|
StrCat | Merges five or more strings or numbers into a single string. |
StrCat | Merges a single value into a string. |
StrCat | Merges two strings or numbers into a single string. |
StrCat | Merges three strings or numbers into a single string. |
StrCat | Merges four strings or numbers into a single string. |