public member function
<random>

std::piecewise_constant_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 piecewise_constant_distribution is the same as the first element in the vector returned by member intervals.

Parameters

none

Return value

The lower bound of possible values generated by the distribution.
result_type is a member type, defined as an alias of the first class template parameter (RealType).

Complexity

Constant.

See also