std::uniform_int_distribution
From cppreference.com
Template:cpp/numeric/random/sidebar
Defined in header <random>
|
||
template< class IntType = int > class uniform_int_distribution; |
Template:mark c++11 feature | |
Uniform random number distribution produces random integers i, uniformly distributed on the closed interval [a, b], that is, distributed according to the discrete probability function P(i|a,b) = 1/(b − a + 1).
Contents |
Member types
Template:tdcl list begin Template:tdcl list hitem Template:tdcl list item Template:tdcl list item Template:tdcl list end
Member functions
constructs new distribution (public member function) | |
returns the first parameter of the uniform_int_distribution parameter set (public member function) | |
returns the second parameter of the uniform_int_distribution parameter set (public member function) |