...one of the most highly
regarded and expertly designed C++ library projects in the
world.
— Herb Sutter and Andrei
Alexandrescu, C++
Coding Standards
Returns the result type of pop_front
, given the input sequence
type.
template< typename Sequence > struct pop_front { typedef unspecified type; };
Table 1.102. Parameters
Parameter |
Requirement |
Description |
---|---|---|
|
A model of Forward Sequence |
Operation's argument |
result_of::pop_front
<Sequence>::type
Return type:
Sequence
implements the Associative
Sequence model.
Semantics: Returns a sequence with all
the elements of Sequence
except the first element.
Constant.
#include <boost/fusion/algorithm/transformation/pop_front.hpp> #include <boost/fusion/include/pop_front.hpp>