absl::FixedArray::begin

begin overloads

Synopses

Declared in <absl/container/fixed_array.h>

Returns an iterator to the beginning of the fixed array.

iterator
begin();
» more...

Returns a const iterator to the beginning of the fixed array.

const_iterator
begin() const;
» more...

Return Value

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