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 2015. The current version is 1.89.0.
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.