[#absl-InlinedVector-2constructor-0ff] = xref:absl.adoc[absl]::xref:absl/InlinedVector.adoc[InlinedVector]::InlinedVector :relfileprefix: ../../ :mrdocs: Creates an inlined vector with elements constructed from the provided forward iterator range [`first`, `last`).] == Synopsis Declared in `<absl/container/inlined_vector.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template< typename ForwardIterator, xref:absl/InlinedVector.adoc[EnableIfAtLeastForwardIterator<ForwardIterator>] = 0> InlinedVector( ForwardIterator first, ForwardIterator last, xref:absl/InlinedVector/allocator_type.adoc[allocator_type] const& allocator = allocator_type()); ---- == Description NOTE: the `enable_if` prevents ambiguous interpretation between a call to this constructor with two integral arguments and a call to the above `InlinedVector(size_type, const_reference)` constructor. == Parameters [cols="1,4"] |=== | 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. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#