resize overloads
Synopses
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);
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,
char32_t character);
Created with MrDocs