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 2013. The current version is 1.90.0.
Returns the result type of end.
template<typename Seq> struct end { typedef unspecified type; };
Table 1.20. Parameters
|
Parameter |
Requirement |
Description |
|---|---|---|
|
Seq |
A model of Forward Sequence |
Argument sequence |
result_of::end<Seq>::type
Return type: A model of the same traversal concept as Seq.
Semantics: Returns the type of an iterator one past the end of Seq.
/sequence/intrinsic/end.hpp>
typedef vector<int> vec; typedef result_of::prior<result_of::end<vec>::type>::type first; BOOST_MPL_ASSERT((result_of::equal_to<first, result_of::begin<vec>::type>))