On Monday, 29 April 2019 at 14:39:29 UTC, rikki cattermole wrote:
float f = uniform01();Its already initialized on module load.If you do want to custom seed it, you'll probably want to cast the seed to uint instead and have your own instance of the random number generator.
On Monday, 29 April 2019 at 15:24:41 UTC, Paul Backus wrote:
https://dlang.org/phobos/std_random.html#unpredictableSeed
Thanks!