feature. See also
. The project being documented here (as the example) is the Zig library itself.
benchmark.prngs
const prngs = [_]Rng
File
Code
const prngs = [_]Rng{
Rng{
.ty = Random.Isaac64,
.name = "isaac64",
.init_u64 = 0,
},
Rng{
.ty = Random.Pcg,
.name = "pcg",
.init_u64 = 0,
},
Rng{
.ty = Random.RomuTrio,
.name = "romutrio",
.init_u64 = 0,
},
Rng{
.ty = Random.Sfc64,
.name = "sfc64",
.init_u64 = 0,
},
Rng{
.ty = Random.Xoroshiro128,
.name = "xoroshiro128",
.init_u64 = 0,
},
Rng{
.ty = Random.Xoshiro256,
.name = "xoshiro256",
.init_u64 = 0,
},
}