コード例 #1
0
ファイル: VariableIntPacker.cs プロジェクト: MirageNet/Mirage
 public VarIntPacker(ulong smallValue, ulong mediumValue, ulong largeValue, bool throwIfOverLarge = true)
     : this(BitHelper.BitCount(smallValue), BitHelper.BitCount(mediumValue), BitHelper.BitCount(largeValue), throwIfOverLarge)
 {
 }
コード例 #2
0
ファイル: VariableIntPacker.cs プロジェクト: MirageNet/Mirage
 public VarIntPacker(ulong smallValue, ulong mediumValue)
     : this(BitHelper.BitCount(smallValue), BitHelper.BitCount(mediumValue), 64, false)
 {
 }