...one of the most highly
regarded and expertly designed C++ library projects in the
world.
— Herb Sutter and Andrei
Alexandrescu, C++
Coding Standards
Defines single element monomorphic dataset.
namespace boost { namespace unit_test { namespace data { monomorphic::singleton< char * > make(char * str); monomorphic::singleton< char const * > make(char const * str); template<typename T> std::enable_if<!is_container_forward_iterable< T >::value &&!monomorphic::is_dataset< T >::value &&!boost::is_array< typenameboost::remove_reference< T >::type >::value, monomorphic::singleton< T > >::type make(T && v); namespace monomorphic { template<typename T> struct is_dataset<singleton< T >>; template<typename T> class singleton; } } } }