public BitFieldWriter(PositionedOutputStream output, int bitSize) { this.output = new RunLengthByteWriter(output); this.bitSize = bitSize; }
public RunLengthByteWriter(PositionedOutputStream output) { this.output = output; }
public RunLengthIntegerWriter(PositionedOutputStream output, bool signed) { this.output = output; this.signed = signed; this.utils = new SerializationUtils(); }