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_POP_BACK_Z

BOOST_VMD_TUPLE_POP_BACK_Z — pops an element from the end of a tuple. It reenters BOOST_PP_REPEAT with maximum efficiency.

Synopsis

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

BOOST_VMD_TUPLE_POP_BACK_Z(z, tuple)

Description

z = the next available BOOST_PP_REPEAT dimension. tuple = tuple to pop an element from.

If the tuple is an empty tuple the result is undefined. If the tuple is a single element the result is an empty tuple. Otherwise the result is a tuple after removing the last element.


PrevUpHomeNext