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
join
Description

Returns the result of joining 2 sequences, given the sequence types.

Synopsis
template<
    typename LhSequence,
    typename RhSequence
    >
struct join
{
    typedef unspecified type;
};
Expression Semantics
result_of::join<LhSequence, RhSequence>::type

Return type:

Semantics: Returns a sequence containing the elements of LhSequence followed by the elements of RhSequence. The order of the elements in the 2 sequences is preserved.

Complexity

Constant.

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

PrevUpHomeNext