Lines Matching refs:Random
62 auto rnd = Random(42);
1312 auto rnd = Random(unpredictableSeed);
1325 alias Random = Mt19937; variable
1329 static assert(isUniformRNG!Random);
1330 static assert(isUniformRNG!(Random, uint));
1331 static assert(isSeedable!Random);
1332 static assert(isSeedable!(Random, uint));
1343 @property ref Random rndGen() @safe in rndGen()
1348 static Random result; in rndGen()
1352 static if (isSeedable!(Random, typeof(map!((a) => unpredictableSeed)(repeat(0))))) in rndGen()
1355 result = Random(unpredictableSeed); in rndGen()
1384 return uniform!(boundaries, T1, T2, Random)(a, b, rndGen);
1390 auto gen = Random(unpredictableSeed);
2001 auto ref choice(Range, RandomGen = Random)(auto ref Range range,
2022 auto urng = Random(unpredictableSeed);
2272 auto rnd = Random(unpredictableSeed);