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 to view this page for the latest version.
PrevUpHomeNext
reverse
Description

Returns the result type of reverse, given the input sequence type.

Synopsis
template<
    typename Sequence
    >
struct reverse
{
    typedef unspecified type;
};

Table 1.81. Parameters

Parameter

Requirement

Description

Sequence

A model of Bidirectional Sequence

Operation's argument

Expression Semantics
result_of::reverse<Sequence>::type

Return type: A model of Bidirectional Sequence.

Semantics: Returns a sequence with the elements in the reverse order to Sequence.

Complexity

Constant.

Header
#include <boost/fusion/algorithm/transformation/reverse.hpp>
#include <boost/fusion/include/reverse.hpp>

PrevUpHomeNext