...one of the most highly
regarded and expertly designed C++ library projects in the
world.
— Herb Sutter and Andrei
Alexandrescu, C++
Coding Standards
BOOST_VMD_SEQ_REMOVE — removes an element from a seq.
// In header: <boost/vmd/seq/remove.hpp>
BOOST_VMD_SEQ_REMOVE(seq, index)
seq = seq from which an element is to be removed.
index = The zero-based position in seq of the element to be removed.
If index is greater or equal to the seq size the result is undefined. If the seq is a single element and the index is 0 the result is an empty seq. Otherwise the result is a seq after removing the index element.