...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; // public member functions array(T const *, std::size_t); data::size_t size() const; iterator begin() const; // public data members static const int arity; };
array
public member functionsarray(T const * arr_, std::size_t size_);
data::size_t size() const;
iterator begin() const;