absl::InlinedVector::InlinedVector

Creates an inlined vector with elements constructed from the provided input iterator range [first, last).]

Synopsis

Declared in <absl/container/inlined_vector.h>

template<
    typename InputIterator,
    DisableIfAtLeastForwardIterator<InputIterator> = 0>
InlinedVector(
    InputIterator first,
    InputIterator last,
    allocator_type const& allocator = allocator_type());

Parameters

NameDescription
firstAn iterator to the beginning of the range.
lastAn iterator past the end of the range.
allocatorThe allocator to use.