...one of the most highly
regarded and expertly designed C++ library projects in the
world.
— Herb Sutter and Andrei
Alexandrescu, C++
Coding Standards
boost::type_erasure::tuple
// In header: <boost/type_erasure/tuple.hpp> template<typename Concept, class... T> class tuple { public: // construct/copy/destruct template<class... U> explicit tuple(U &&...); };
tuple is a Boost.Fusion Random Access Sequence containing anys. Concept
specifies the Concept for each of the elements. The remaining arguments must be (possibly const and/or reference qualified) placeholders, which are the placeholders of the elements.