Xoshiro128++ Period: 2 ^ 128 - 1 Footprint: 16 bytes
ditto
import std.random : uniform01; auto rndGen = Xoshiro128PlusPlus(unpredictableSeed); auto x = uniform01(rndGen); assert(0 <= x && x <= 1);
See Implementation
Xoshiro128++ Period: 2 ^ 128 - 1 Footprint: 16 bytes