Function call operators
Declared in <absl/random/log_uniform_int_distribution.h>
Generates a random value in the interval [min, max].
template<typename URBG>
result_type
operator()(URBG& g);
» more...
Generates a random value using the given parameter set.
template<typename URBG>
result_type
operator()(
URBG& g,
param_type const& p);
» more...
A random value in the closed interval [min, max].
| Name | Description |
|---|---|
| g | The uniform random bit generator. |
| p | The parameter set to use for this call. |