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_SEQ_POP_BACK

BOOST_VMD_SEQ_POP_BACK — pops an element from the end of a seq.

Synopsis

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

BOOST_VMD_SEQ_POP_BACK(seq)

Description

seq = seq to pop an element from.

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


PrevUpHomeNext