public member function
<random>

std::uniform_int_distribution::min

result_type min() const;
Minimum value
Returns the greatest lower bound of the range of values potentially returned by member operator(), which for uniform_int_distribution is the distribution parameter a.

Parameters

none

Return value

Distribution parameter a.
result_type is a member type, defined as an alias of the first class template parameter (IntType).

Complexity

Constant.

See also