Creates an inlined vector with elements constructed from the provided input iterator range [first, last).]
Declared in <absl/container/inlined_vector.h>
template<
typename InputIterator,
DisableIfAtLeastForwardIterator<InputIterator> = 0>
InlinedVector(
InputIterator first,
InputIterator last,
allocator_type const& allocator = allocator_type());
| 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. |