A "good" seed for initializing random number generators. Initializing with unpredictableSeed ensures that RNGs produce different pseudo-random sequences each time they are run.
auto rng = Random(unpredictableSeed); auto n = rng.front;
See Implementation
A "good" seed for initializing random number generators. Initializing with unpredictableSeed ensures that RNGs produce different pseudo-random sequences each time they are run.