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 an older version of Boost and was released in 2022. The current version is 1.89.0.
Returns the result type of push_back, given the types of
the input sequence and element to push.
template< typename Sequence, typename T > struct push_back { typedef unspecified type; };
Table 1.103. Parameters
|
Parameter |
Requirement |
Description |
|---|---|---|
|
|
A model of Forward Sequence |
Operation's argument |
|
|
Any type |
Operation's argument |
result_of::push_back<Sequence, T>::type
Return type:
Semantics: Returns a sequence with the
elements of Sequence
and an element of type T
added to the end.
Constant.
#include <boost/fusion/algorithm/transformation/push_back.hpp> #include <boost/fusion/include/push_back.hpp>