|
BDE 4.39.x Production Release
|
#include <bslstl_vector.h>
This struct provides a namespace for implementing the swap member function of vector<VALUE_TYPE, ALLOCATOR>. swap can be implemented irrespective of the VALUE_TYPE or ALLOCATOR template parameters, which is why we implement it in this non-parameterized, non-inlined utility.
See bslstl_vector
Static Public Member Functions | |
| static std::size_t | computeNewCapacity (std::size_t newLength, std::size_t capacity, std::size_t maxSize) |
| static void | swap (void *a, void *b) |
|
static |
Return a capacity that is at least the specified newLength and at least twice the specified capacity if this is less than the specified maxSize, but never more than maxSize.
capacity < newLength and newLength <= maxSize.
|
static |
Exchange the value of the specified a vector with that of the specified b vector.