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

Name

Description

first

An iterator to the beginning of the range.

last

An iterator past the end of the range.

allocator

The allocator to use.

Created with MrDocs