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

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.95. Parameters

Parameter

Requirement

Description

Sequence

A model of Bidirectional Sequence

Operation's argument


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

Return type:

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