[#absl-log_uniform_int_distribution-operator_call-00] = xref:absl.adoc[absl]::xref:absl/log_uniform_int_distribution.adoc[log_uniform_int_distribution]::operator() :relfileprefix: ../../ :mrdocs: Function call operators == Synopses Declared in `<absl/random/log_uniform_int_distribution.h>` Generates a random value in the interval [min, max]. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template<typename URBG> xref:absl/log_uniform_int_distribution/result_type.adoc[result_type] xref:absl/log_uniform_int_distribution/operator_call-09.adoc[operator()](URBG& g); ---- [.small]#xref:absl/log_uniform_int_distribution/operator_call-09.adoc[_» more..._]# Generates a random value using the given parameter set. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template<typename URBG> xref:absl/log_uniform_int_distribution/result_type.adoc[result_type] xref:absl/log_uniform_int_distribution/operator_call-05.adoc[operator()]( URBG& g, xref:absl/log_uniform_int_distribution/param_type.adoc[param_type] const& p); ---- [.small]#xref:absl/log_uniform_int_distribution/operator_call-05.adoc[_» more..._]# == Return Value A random value in the closed interval [min, max]. == Parameters [cols="1,4"] |=== | Name| Description | *g* | The uniform random bit generator. | *p* | The parameter set to use for this call. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#