|
basepublic member function
Iterator base() const; Return base iterator Returns the base iterator.The base iterator is an iterator of the same type as the one used to construct the reverse_iterator, but pointing to the element next to the one the reverse_iterator is currently pointing to (a reverse_iterator has always an offset of -1 with regards to its base iterator). ParametersnoneReturn valueThe base iterator, which iterates in the opposite direction.Iterator is reverse_iterator's template parameter (the type of the base iterator). Example
Output:
|