The main parameter type for StrCat() and StrAppend().
Synopsis
Declared in <absl/strings/str_cat.h>
class AlphaNum;
Description
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.
Member Functions
Name |
Description |
|
Constructors |
|
Deleted copy assignment; |
Returns the converted string as a view. |
|
Returns a pointer to the converted string data. |
|
Returns the size of the converted string. |
Non-Member Functions
Name |
Description |
Merges five or more strings or numbers into a single string. |
|
Merges a single value into a string. |
|
Merges two strings or numbers into a single string. |
|
Merges three strings or numbers into a single string. |
|
Merges four strings or numbers into a single string. |
Created with MrDocs