Standard C++ Library Reference ISO/IEC (VERSION3)

set::max_size
size_type max_size() const;
The member function returns the length of the longest sequence that the object can control.
set::pointer
typedef Alloc::pointer pointer;
The type describes an object that can serve as a pointer to an element of the controlled
sequence.
set::rbegin
reverse_iterator rbegin();
const_reverse_iterator rbegin() const;
The member function returns a reverse bidirectional iterator that points just beyond the end of
the controlled sequence. Hence, it designates the beginning of the reverse sequence.
set::reference
typedef Alloc::const_reference const_reference;
The type describes an object that can serve as a reference to an element of the controlled
sequence.
set::rend
reverse_iterator rend();
const_reverse_iterator rend() const;
The member function returns a reverse bidirectional iterator that points at the first element of
the sequence (or just beyond the end of an empty sequence). Hence, it designates the end of the
reverse sequence.
set::reverse_iterator
typedef reverse_iterator<iterator> reverse_iterator;
The type describes an object that can serve as a reverse bidirectional iterator for the controlled
sequence.