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 for the latest Boost documentation.
PrevUpHomeNext

Macro BOOST_VMD_TUPLE_POP_FRONT_Z

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

Synopsis

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

BOOST_VMD_TUPLE_POP_FRONT_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 first element.


PrevUpHomeNext