std::make_reverse_iterator
From cppreference.com
| Defined in header <iterator>
|
||
template< class Iter > std::reverse_iterator<Iter> make_reverse_iterator( Iter i ); |
(since C++14) (constexpr since C++17) |
|
make_reverse_iterator is a convenience function template that constructs a std::reverse_iterator for the given iterator i (which must be a LegacyBidirectionalIterator) with the type deduced from the type of the argument.
Contents |