std::reverse_iterator<Iter>::operator*,->

From cppreference.com
 
 
Iterator library
Iterator concepts
Iterator primitives
Iterator adaptors
Stream iterators
Iterator customization points
Iterator operations
(C++11)
(C++11)
Range access
(C++11)(C++14)
(C++11)(C++14)
(C++17)(C++20)
(C++14)(C++14)
(C++14)(C++14)
(C++17)
(C++17)
 
 
(1)
reference operator*() const;
(until C++17)
constexpr reference operator*() const;
(since C++17)
(2)
pointer operator->() const;
(until C++17)
constexpr pointer operator->() const;
(since C++17)

Returns a reference or pointer to the element previous to current.

1) Equivalent to Iter tmp = current; return *--tmp;
2) Equivalent to std::addressof(operator*()).

Parameters

(none)

Return value

Reference or pointer to the element previous to current.

Example

See also

accesses an element by index
(public member function)