absl::InlinedVector::insert

Overload of InlinedVector::insert(...) that inserts v at pos using move semantics, returning an iterator to the newly inserted element.

Synopsis

Declared in <absl/container/inlined_vector.h>

iterator
insert(
    const_iterator pos,
    value_type&& v);

Return Value

An iterator to the newly inserted element.

Parameters

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