Create a vector object.
Declared in <bslstl_vector.h>
template<class INPUT_ITER>
vector(
INPUT_ITER first,
INPUT_ITER last,
ALLOCATOR const& basicAllocator = ALLOCATOR());
| Name | Description |
|---|---|
| first | beginning of the range (inclusive) |
| last | end of the range (exclusive) |
| basicAllocator | allocator used to supply memory |