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

PrevUpHomeNext

Struct template zip

boost::unit_test::data::monomorphic::result_of::zip — Result type of the zip operator.

Synopsis

// In header: <boost/test/data/monomorphic/zip.hpp>

template<typename DS1Gen, typename DS2Gen> 
struct zip {
  // types
  typedef monomorphic::zip< typename DS1Gen::type, typename DS2Gen::type > type;
};

PrevUpHomeNext