示例#1
0
 public int NextChunk(int bits)
 {
     return(wrapped.NextChunk(bits));
 }
 public int NextChunk(int bits) => wrapped.NextChunk(bits);
示例#3
0
 private int ReadValue(IBitReader reader)
 {
     return(BlockLengthCodeOffsets[Code] + reader.NextChunk(BlockLengthCodeExtraBits[Code]));
 }