StrAppend overloads
Synopses
Declared in <absl/strings/str_cat.h>
Appends nothing to the destination string.
void
StrAppend(std::string* dest);
Appends a single string or number to an existing string.
Appends two strings or numbers to an existing string.
Appends three strings or numbers to an existing string.
Appends four strings or numbers to an existing string.
Appends five or more strings or numbers to an existing string.
Parameters
Name |
Description |
dest |
The destination string. |
a |
The value to append. |
b |
The second value to append. |
c |
The third value to append. |
d |
The fourth value to append. |
e |
The fifth value to append. |
args |
Any additional values to append. |
Created with MrDocs