bsl::vector<VALUE_TYPE*, ALLOCATOR>::vector

Synopses

Declared in <bslstl_vector.h>

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