[#absl-InlinedVector-2constructor-048] = xref:absl.adoc[absl]::xref:absl/InlinedVector.adoc[InlinedVector]::InlinedVector :relfileprefix: ../../ :mrdocs: Creates an inlined vector with elements constructed from the provided input iterator range [`first`, `last`).] == Synopsis Declared in `<absl/container/inlined_vector.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template< typename InputIterator, xref:absl/InlinedVector.adoc[DisableIfAtLeastForwardIterator<InputIterator>] = 0> InlinedVector( InputIterator first, InputIterator last, xref:absl/InlinedVector/allocator_type.adoc[allocator_type] const& allocator = allocator_type()); ---- == 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]#