std::uniform_real_distribution<RealType>::operator()
Min standard notice:
Generates random numbers that are distributed according to the associated probability function. The entropy is acquired by calling g.operator().
# Declarations
template< class Generator >
result_type operator()( Generator& g );
(since C++11)
template< class Generator >
result_type operator()( Generator& g, const param_type& params );
(since C++11)
# Parameters
g: a uniform random bit generator objectparams: distribution parameter set to use instead of the associated one
# Return value
The generated random number.