CH.SipHash.SipHash.Rotl C# (CSharp) Method

Rotl() private method

private Rotl ( ulong x, int b ) : ulong
x ulong
b int
return ulong
        private static ulong Rotl(ulong x, int b)
        {
            return (x << b) | (x >> (64 - b));
        }