std::linear_congruential_engine
Min standard notice:
Header: <random>
linear_congruential_engine is a random number engine based on Linear congruential generator (LCG).
# Declarations
template<
class UIntType,
UIntType a,
UIntType c,
UIntType m
> class linear_congruential_engine;
(since C++11)
# Example
This section is incompleteReason: no example