Defined in header <iterator> | ||||
---|---|---|---|---|
| (since C++14) |
make_reverse_iterator
is a convenience function template that constructs a std::reverse_iterator
for the given iterator i
with the type deduced from the type of the argument.
Parameters
i | - | input iterator to be converted to reverse iterator |
Return value
A std::reverse_iterator
constructed from i
.
Possible implementation
|
Example
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | #include <iostream> #include <iterator> #include <vector> #include <algorithm> int main() { auto v = std::vector< int >{ 1, 3, 10, 8, 22 }; std::sort(v.begin(), v.end()); std::copy(v.begin(), v.end(), std::ostream_iterator< int >(std::cout, ", " )); std::cout << '\n' ; std::copy( std::make_reverse_iterator(v.end()), std::make_reverse_iterator(v.begin()), std::ostream_iterator< int >(std::cout, ", " )); } |
Output:
1 2 | 1, 3, 8, 10, 22, 22, 10, 8, 3, 1, |
See also
iterator adaptor for reverse-order traversal (class template) | |
(C++14) | returns a reverse iterator to a container or array (function) |
(C++14) | returns a reverse end iterator for a container or array (function) |
Please login to continue.