Alexandria.Compression.DclImplode.RemoveBits C# (CSharp) Méthode

RemoveBits() static private méthode

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