SmartAssembly.Zip.SimpleZip.DeflaterHuffman.TallyLit C# (CSharp) Method

TallyLit() public method

public TallyLit ( int lit ) : bool
lit int
return bool
            public bool TallyLit(int lit)
            {
                this.d_buf[this.last_lit] = 0;
                this.l_buf[this.last_lit++] = (byte) lit;
                this.literalTree.freqs[lit] = (short) (this.literalTree.freqs[lit] + 1);
                return this.IsFull();
            }