public member function

std::binomial_distribution::max

<random>
result_type max() const;
Maximum value
Returns the least upper bound of the range of values potentially returned by member operator(), which for binomial_distribution is the distribution parameter t.

Parameters

none

Return value

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

Complexity

Constant.

See also