SevenZip.Compression.RangeCoder.Decoder.Decode C# (CSharp) Method

Decode() public method

public Decode ( uint start, uint size, uint total ) : void
start uint
size uint
total uint
return void
        public void Decode(uint start, uint size, uint total)
        {
            Code -= start * Range;
            Range *= size;
            Normalize();
        }