absl::FixedArray::rbegin

rbegin overloads

Synopses

Declared in <absl/container/fixed_array.h>

Returns a reverse iterator from the end of the fixed array.

reverse_iterator
rbegin();
» more...

Returns a const reverse iterator from the end of the fixed array.

const_reverse_iterator
rbegin() const;
» more...

Return Value

  • A reverse iterator to the last element.
  • A const reverse iterator to the last element.