Boost C++ Libraries

...one of the most highly regarded and expertly designed C++ library projects in the world. Herb Sutter and Andrei Alexandrescu, C++ Coding Standards

This is the documentation for an old version of boost. Click here for the latest Boost documentation.
PrevUpHomeNext

Type definition reverse_iterator

reverse_iterator

Synopsis

// In header: <boost/stl_interfaces/reverse_iterator.hpp>


typedef std::reverse_iterator< BidiIter > reverse_iterator;

Description

A template alias for std::reverse_iterator. This only exists to make migration from Boost.STLInterfaces to C++20 easier; switch to the one in std as soon as you can.


PrevUpHomeNext