ByChance.Core.Random2.NextUInt64 C# (CSharp) Method

NextUInt64() private method

Gets the next random number in the sequence and returns it as a 64-bit unsigned integer.
private NextUInt64 ( ) : ulong
return ulong
        private ulong NextUInt64()
        {
            this.v ^= this.v >> A1;
            this.v ^= this.v << A2;
            this.v ^= this.v >> A3;

            return this.v * A;
        }