absl::InlinedVector::assign

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>

template<
    typename InputIterator,
    DisableIfAtLeastForwardIterator<InputIterator> = 0>
void
assign(
    InputIterator first,
    InputIterator last);

Description

NOTE: this overload is for iterators that are "input" category.

Parameters

NameDescription
firstAn iterator to the beginning of the range.
lastAn iterator past the end of the range.