resize overloads
Declared in <bslstl_string.h>
Change the length of this string to the specified newLength, erasing characters at the end if newLength < length() or appending the appropriate number of copies of CHAR_TYPE() at the end if length() < newLength.
void
resize(size_type newLength);
» more...
Change the length of this string to the specified newLength, erasing characters at the end if newLength < length() or appending the appropriate number of copies of the specified character at the end if length() < newLength.
void
resize(
size_type newLength,
char16_t character);
» more...