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_FRONT

BOOST_VMD_SEQ_POP_FRONT — pops an element from the front of a seq.

Synopsis

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

BOOST_VMD_SEQ_POP_FRONT(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 first element.


PrevUpHomeNext