[#absl-InlinedVector-assign-0e6] = xref:absl.adoc[absl]::xref:absl/InlinedVector.adoc[InlinedVector]::assign :relfileprefix: ../../ :mrdocs: Overload of `InlinedVector::assign(...)` to replace the contents of the inlined vector with the 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> void assign( InputIterator first, InputIterator last); ---- == Description NOTE: this overload is for iterators that are "input" category. == Parameters [cols="1,4"] |=== | Name| Description | *first* | An iterator to the beginning of the range. | *last* | An iterator past the end of the range. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#