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

Macro BOOST_VMD_TUPLE_PUSH_BACK

BOOST_VMD_TUPLE_PUSH_BACK — appends an element to the end of a tuple.

Synopsis

// In header: <boost/vmd/tuple/push_back.hpp>

BOOST_VMD_TUPLE_PUSH_BACK(tuple, elem)

Description

tuple = tuple to to append an element to. elem = element to append.

If the tuple is an empty tuple the result is a tuple with the single element. Otherwise the result is a tuple after adding the element to the end.


PrevUpHomeNext