stl:deque:rbegin
From C++ Reference
rbegin
Syntax:
#include <deque> reverse_iterator rbegin(); const_reverse_iterator rbegin() const;
The rbegin() function returns a reverse_iterator to the end of the current deque.
rbegin() runs in constant time.
From C++ Reference
Syntax:
#include <deque> reverse_iterator rbegin(); const_reverse_iterator rbegin() const;
The rbegin() function returns a reverse_iterator to the end of the current deque.
rbegin() runs in constant time.