...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 at_c
[7].
template< typename Seq, int M> struct at_c { typedef unspecified type; };
Table 1.30. Parameters
Parameter |
Requirement |
Description |
---|---|---|
|
A model of Random Access Sequence |
Argument sequence |
|
Positive integer index |
Index of element |
result_of::at_c<Seq, M>::type
Return type: Any type
Semantics: Returns the result type of
using at_c
to access the M
th element of Seq
.
#include <boost/fusion/sequence/intrinsic/at.hpp> #include <boost/fusion/include/at.hpp>
typedefvector
<int,float,char> vec; BOOST_MPL_ASSERT((boost::is_same<result_of::at_c
<vec, 1>::type, float&>));
[7]
result_of::at_c
reflects the actual return
type of the function at_c
. Sequence(s)
typically return references to its elements via the at_c
function. If you want
to get the actual element type, use result_of::value_at_c