absl::InlinedVector::insert

Overload of InlinedVector::insert(...) that inserts copies of the elements of list starting at pos, returning an iterator pointing to the first of the newly inserted elements.

Synopsis

Declared in <absl/container/inlined_vector.h>

iterator
insert(
    const_iterator pos,
    std::initializer_list<value_type> list);

Return Value

An iterator to the first newly inserted element.

Parameters

NameDescription
posThe position at which to insert.
listThe initializer list to copy elements from.