System.IO.Compression.FastEncoderWindow.HashValue C# (CSharp) Method

HashValue() private method

private HashValue ( uint hash, byte b ) : uint
hash uint
b byte
return uint
        private uint HashValue(uint hash, byte b) {
            return ((hash << 4) ^ b);
        }