[#bsl-multiset-03-rbegin-01] = xref:bsl.adoc[bsl]::xref:bsl/multiset-03.adoc[multiset]::rbegin :relfileprefix: ../../ :mrdocs: `rbegin` overloads == Synopses Declared in `<bslstl_multiset.h>` Return a reverse iterator to the last element, or `rend` if empty. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- xref:bsl/multiset-03/reverse_iterator.adoc[multiset<KEY, COMPARATOR, ALLOCATOR>::reverse_iterator] xref:bsl/multiset-03/rbegin-03.adoc[rbegin]() noexcept; ---- [.small]#xref:bsl/multiset-03/rbegin-03.adoc[_» more..._]# Return a const reverse iterator to the last element, or `rend`. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- xref:bsl/multiset-03/const_reverse_iterator.adoc[multiset<KEY, COMPARATOR, ALLOCATOR>::const_reverse_iterator] xref:bsl/multiset-03/rbegin-02.adoc[rbegin]() const noexcept; ---- [.small]#xref:bsl/multiset-03/rbegin-02.adoc[_» more..._]# == Return Value * modifiable reverse iterator to the last element, or `rend()` * const reverse iterator to the last element, or `rend()` [.small]#Created with https://www.mrdocs.com[MrDocs]#