XoshiroEngine.this

Initializes the generator with a seed.

  1. this()
  2. this(UIntType x0)
    struct XoshiroEngine(UIntType, uint nbits, string scrambler, uint A, uint B, uint I, uint R, UIntType S, UIntType T)
    @nogc nothrow pure @safe
    this
    ()
    (
    UIntType x0
    )
    if (
    (
    is(UIntType == uint) ||
    is(UIntType == ulong)
    )
    &&
    "**" == scrambler
    &&
    (
    UIntType.sizeof * 8 * 4 == nbits ||
    UIntType.sizeof * 8 * 8 == nbits
    )
    )

Meta