Namespaces
Variants
Actions

std::uniform_int_distribution<IntType>::reset

From cppreference.com
< cppโ€Ž | numericโ€Ž | randomโ€Ž | uniform int distribution
 
 
 
 
 
void reset();
(since C++11)

Resets the internal state of the distribution object. After a call to this function, the next call to operator() on the distribution object will not be dependent on previous calls to operator().

[edit] Parameters

(none)

[edit] Return value

(none)

[edit] Complexity

Constant.