Logo

Programming-Idioms

This language bar is your friend. Select your favorite languages!
  • D

Idiom #70 Use clock as random generator seed

Get the current datetime and provide it as a seed to a random generator. The generator sequence will be different at each run.

import std.datetime, std.random;
auto rng = Random(cast(uint)Clock.currTime.stdTime);
import std.datetime, std.random;
rndGen.seed(cast(uint)Clock.currTime.stdTime);

reseed the default thread-local random number generator
#include <stdlib.h>
#include <time.h>
srand((unsigned)time(0));

New implementation...
< >
deleplace