...one of the most highly
regarded and expertly designed C++ library projects in the
world.
— Herb Sutter and Andrei
Alexandrescu, C++
Coding Standards
Random generator.
namespace boost { namespace unit_test { namespace data { monomorphic::generated_by< monomorphic::random_t<> > random(); template<typename SampleType> monomorphic::generated_by< monomorphic::random_t< SampleType > > random(SampleType, SampleType); template<typename Params> unspecified random(Params const &); namespace monomorphic { template<typename SampleType = double, typename DistributionType = typename ds_detail::default_distribution<SampleType>::type, typename EngineType = std::default_random_engine> class random_t; } } } }