Alexandria.Compression.DclImplode.RemoveBits C# (CSharp) Method

RemoveBits() static private method

static private RemoveBits ( int &bitBuffer, int &bitCount, int bits ) : void
bitBuffer int
bitCount int
bits int
return void
        static void RemoveBits(ref int bitBuffer, ref int bitCount, int bits)
        {
            bitBuffer >>= bits;
            bitCount -= bits;
        }