/// <summary>Copy the seed from another RNG, without mutating it</summary> public XorShift(XorShift readSeedFrom) : this(readSeedFrom.x) { }
/// <summary>Copy the seed from another RNG, without mutating it</summary> public XorShift(XorShift readSeedFrom) : this((UInt64)readSeedFrom.x) { }