XorshiftEngine.this

Constructs a XorshiftEngine generator seeded with x0.

struct XorshiftEngine(UIntType, uint nbits, int sa, int sb, int sc)
@safe pure nothrow @nogc
this
()
(
UIntType x0
)
if (
isUnsigned!UIntType &&
!(
sa > 0 &&
sb > 0
&&
sc > 0
)
)

Parameters

x0 UIntType

value used to deterministically initialize internal state

Meta