bsl::list::resize

resize overloads

Synopses

Declared in <bslstl_list.h>

Change the size of this list to the specified newSize.

void
resize(size_type newSize);
» more...

Change the size of this list to the specified newSize, using the specified value for any appended elements.

void
resize(
    size_type newSize,
    value_type const& value);
» more...