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 the documentation for an old version of Boost. Click here to view this page for the latest version.
PrevUpHomeNext

Header <boost/test/data/monomorphic/grid.hpp>

Defines monomorphic dataset n+m dimentional *. Samples in this dataset is grid of elements in DataSet1 and DataSet2. There will be total |DataSet1| * |DataSet2| samples.

namespace boost {
  namespace unit_test {
    namespace data {
      namespace monomorphic {
        template<typename DataSet1, typename DataSet2> class grid;

        template<typename DataSet1, typename DataSet2> 
          struct is_dataset<grid< DataSet1, DataSet2 >>;
        namespace result_of {
          template<typename DS1Gen, typename DS2Gen> struct grid;
        }
      }
    }
  }
}

PrevUpHomeNext