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

static_string::resize (2 of 2 overloads)
PrevUpHomeNext

Changes the number of characters stored.

Synopsis
void
resize(
    std::size_t n,
    CharT c);
Description

If the resulting string is larger, the new characters are initialized to the value of c.


PrevUpHomeNext