public VarIntPacker(ulong smallValue, ulong mediumValue, ulong largeValue, bool throwIfOverLarge = true) : this(BitHelper.BitCount(smallValue), BitHelper.BitCount(mediumValue), BitHelper.BitCount(largeValue), throwIfOverLarge) { }
public VarIntPacker(ulong smallValue, ulong mediumValue) : this(BitHelper.BitCount(smallValue), BitHelper.BitCount(mediumValue), 64, false) { }