unpredictableSeed

A "good" seed for initializing random number generators. Initializing with unpredictableSeed ensures that RNGs produce different pseudo-random sequences each time they are run.

@property
uint
unpredictableSeed
()

Examples

auto rng = Random(unpredictableSeed);
auto n = rng.front;

Meta