bsl::multimap::rbegin

rbegin overloads

Synopses

Declared in <bslstl_multimap.h>

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

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

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

multimap<KEY, VALUE, 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()