...one of the most highly
regarded and expertly designed C++ library projects in the
world.
— Herb Sutter and Andrei
Alexandrescu, C++
Coding Standards
boost::unit_test::data::monomorphic::array — Dataset view of a C array.
// In header: <boost/test/data/monomorphic/array.hpp> template<typename T> class array { public: // types typedef T sample; typedef T const * iterator; enum @4 { arity = = 1 }; // construct/copy/destruct array(T const *, std::size_t); // public member functions data::size_t size() const; iterator begin() const; };