Boost
C++ Libraries
...one of the most highly
regarded and expertly designed C++ library projects in the
world.
— Herb Sutter and Andrei
Alexandrescu, C++
Coding Standards
Append to the string.
constexpr basic_static_string& append( const_pointer s, size_type count);
Appends count characters
from the string pointed to by s
to the end of the string.
Strong guarantee.
The string can contain null characters.
*this
|
Name |
Description |
|---|---|
|
|
The string to append. |
|
|
The number of characters to append. |
|
Type |
Thrown On |
|---|---|
|
|
|