StdRandom constructor
- int? seed
Natively constructs a new random generator.
If seed is provided, it guarantees deterministic output mapping.
Otherwise, it initializes dynamically based on system time securely.
Implementation
StdRandom([int? seed]) {
this.seed(seed);
}