public member function
<random>

std::uniform_real_distribution::a

result_type a() const;
Lower bound of range
Returns the parameter a associated with the uniform_real_distribution. This parameter specifies the lower bound of the range of values potentially returned by its member operator().

This value is either set on construction or by a call to member function param.

Parameters

none

Return value

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

Complexity

Constant.

See also