Xoshiro256+ Period: 2 ^ 256 - 1 Footprint: 32 bytes
ditto
import std.random : uniform01; auto rndGen = Xoshiro256Plus(unpredictableSeed!ulong); auto x = uniform01(rndGen); assert(0 <= x && x <= 1);
See Implementation
Xoshiro256+ Period: 2 ^ 256 - 1 Footprint: 32 bytes