bsl::set::rbegin

rbegin overloads

Synopses

Declared in <bslstl_set.h>

Return a reverse iterator to the last element, or rend if empty.

set<KEY, COMPARATOR, ALLOCATOR>::reverse_iterator
rbegin() noexcept;
» more...

Return a const reverse iterator to the last element, or rend.

set<KEY, COMPARATOR, ALLOCATOR>::const_reverse_iterator
rbegin() const noexcept;
» more...

Return Value

  • modifiable reverse iterator to the last element, or rend()
  • const reverse iterator to the last element, or rend()