Boost logo

Boost :

From: Firingme (firingme_at_[hidden])
Date: 2004-01-14 21:07:51


/boost_1_31_0_rc1/libs/random/random-variate.html

template<class Engine, class Distribution>
class variate_generator
{
public:
  typedef Engine engine_type;
  typedef Distribution distribution_type;
  typedef typename Distribution::result_type result_type;

  variate_generator(Engine e, Distribution d);

  result_type operator()();
  template<class T>
  result_type operator()(T value);

  engine_value_type& engine();
  const engine_value_type& engine() const;

  result_type min() const;
  result_type max() const;
                                    //missing " } "

Description


Boost list run by bdawes at acm.org, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk