Declared in <bslstl_vector.h>
vector() noexcept;
» more...
vector(BloombergLP::bslmf::MovableRef<vector<void*>> original) noexcept;
» more...
explicit
vector(allocator<void*> const& basicAllocator) noexcept;
» more...
vector(vector<void*> const& original);
» more...
explicit
vector(
size_type initialSize,
allocator<void*> const& basicAllocator = ALLOCATOR());
» more...
vector(
BloombergLP::bslmf::MovableRef<vector<void*>> original,
type_identity<allocator<void*>>::type const& basicAllocator);
» more...
vector(
std::initializer_list<void*> values,
allocator<void*> const& basicAllocator = ALLOCATOR());
» more...
vector(
vector<void*> const& original,
type_identity<allocator<void*>>::type const& basicAllocator);
» more...
vector(
size_type initialSize,
void* value,
allocator<void*> const& basicAllocator = ALLOCATOR());
» more...
template<class INPUT_ITER>
vector(
INPUT_ITER first,
INPUT_ITER last,
allocator<void*> const& basicAllocator = ALLOCATOR());
» more...
template<class t_RANGE>
vector(
std::from_range_t,
t_RANGE&& range,
allocator<void*> const& basicAllocator = ALLOCATOR());
» more...