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
Change the size of the string.
void resize( std::size_t count);
Resizes the string to contain count
characters. If count > size(), characters with the value 0 are appended. Otherwise, size()
is reduced to count.
|
Name |
Description |
|---|---|
|
|
The size to resize the string to. |
|
Type |
Thrown On |
|---|---|
boost::system::system_error |
|