Synopses
Declared in <bslstl_vector.h>
vector() noexcept;
vector(BloombergLP::bslmf::MovableRef<vector> original) noexcept;
explicit
vector(ALLOCATOR const& basicAllocator) noexcept;
explicit
vector(
size_type initialSize,
ALLOCATOR const& basicAllocator = ALLOCATOR());
vector(
BloombergLP::bslmf::MovableRef<vector> original,
ALLOCATOR const& basicAllocator);
vector(
std::initializer_list<VALUE_TYPE*> values,
ALLOCATOR const& basicAllocator = ALLOCATOR());
vector(
size_type initialSize,
VALUE_TYPE* value,
ALLOCATOR const& basicAllocator = ALLOCATOR());
template<class INPUT_ITER>
vector(
INPUT_ITER first,
INPUT_ITER last,
ALLOCATOR const& basicAllocator = ALLOCATOR());
template<class t_RANGE>
vector(
std::from_range_t,
t_RANGE&& range,
ALLOCATOR const& basicAllocator = ALLOCATOR());
Created with MrDocs