...one of the most highly
regarded and expertly designed C++ library projects in the
world.
— Herb Sutter and Andrei
Alexandrescu, C++
Coding Standards
boost::random::uniform_int_distribution::param_type
// In header: <boost/random/uniform_int_distribution.hpp> class param_type { public: // types typedef uniform_int_distribution distribution_type; // public member functions explicit param_type(IntType = 0, IntType = (std::numeric_limits< IntType >::max)()); IntType a() const; IntType b() const; // friend functions template<typename CharT, typename Traits> std::basic_ostream< CharT, Traits > & operator<<(std::basic_ostream< CharT, Traits > &, const param_type &); template<typename CharT, typename Traits> std::basic_istream< CharT, Traits > & operator>>(std::basic_istream< CharT, Traits > &, const param_type &); bool operator==(const param_type &, const param_type &); bool operator!=(const param_type &, const param_type &); };
param_type
public member functionsexplicit param_type(IntType min = 0, IntType max = (std::numeric_limits< IntType >::max)());
Constructs the parameters of a uniform_int_distribution.
Requires min <= max
IntType a() const;
Returns the minimum value of the distribution.
IntType b() const;
Returns the maximum value of the distribution.
param_type
friend functionstemplate<typename CharT, typename Traits> std::basic_ostream< CharT, Traits > & operator<<(std::basic_ostream< CharT, Traits > & os, const param_type & param);
Writes the parameters to a std::ostream
.
template<typename CharT, typename Traits> std::basic_istream< CharT, Traits > & operator>>(std::basic_istream< CharT, Traits > & is, const param_type & param);
Reads the parameters from a std::istream
.
bool operator==(const param_type & lhs, const param_type & rhs);
Returns true if the two sets of parameters are equal.
bool operator!=(const param_type & lhs, const param_type & rhs);
Returns true if the two sets of parameters are different.