XorshiftEngine.seed

(Re)seeds the generator.

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

Parameters

x0 UIntType

value used to deterministically initialize internal state

Meta