...one of the most highly
regarded and expertly designed C++ library projects in the
world.
— Herb Sutter and Andrei
Alexandrescu, C++
Coding Standards
Front Page / Sequences / Intrinsic Metafunctions / pop_front |
pop_front performs a removal at the beginning of the sequence with guaranteed O(1) complexity.
#include <boost/mpl/pop_front.hpp>
Parameter | Requirement | Description |
---|---|---|
Sequence | Front Extensible Sequence | A sequence to erase the first element from. |
For any Front Extensible Sequence s:
typedef pop_front::type r;
Return type: | Front Extensible Sequence. |
---|---|
Precondition: | empty |
Semantics: | Equivalent to erase |
Postcondition: | size |
Amortized constant time.
typedef vector::type types1; typedef vector ::type types2; typedef vector ::type types3; typedef pop_front ::type result1; typedef pop_front ::type result2; typedef pop_front ::type result3; BOOST_MPL_ASSERT_RELATION( size ::value, ==, 0 ); BOOST_MPL_ASSERT_RELATION( size ::value, ==, 1 ); BOOST_MPL_ASSERT_RELATION( size ::value, ==, 2 ); BOOST_MPL_ASSERT(( is_same< front ::type, long > )); BOOST_MPL_ASSERT(( is_same< front ::type, int > ));