absl::InlinedVector::begin

begin overloads

Synopses

Declared in <absl/container/inlined_vector.h>

Returns an iterator to the beginning of the inlined vector.

iterator
begin() noexcept;
» more...

Overload of InlinedVector::begin() that returns a const_iterator to the beginning of the inlined vector.

const_iterator
begin() const noexcept;
» more...

Return Value

  • An iterator to the first element.
  • A const_iterator to the first element.