absl::InlinedVector::insert

Inserts a copy of v at pos, returning an iterator to the newly inserted element.

Synopsis

Declared in <absl/container/inlined_vector.h>

iterator
insert(
    const_iterator pos,
    const_reference v);

Return Value

An iterator to the newly inserted element.

Parameters

NameDescription
posThe position at which to insert.
vThe value to copy.