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 ForwardIterator,
    EnableIfAtLeastForwardIterator<ForwardIterator> = 0>
void
assign(
    ForwardIterator first,
    ForwardIterator last);

Description

NOTE: this overload is for iterators that are "forward" category or better.

Parameters

Name

Description

first

An iterator to the beginning of the range.

last

An iterator past the end of the range.

Created with MrDocs