コード例 #1
0
 private void flush() throws IOException {
   encoder.encode(nextValues, 0, nextBlocks, 0, iterations);
   final int blockCount =
       (int) PackedInts.Format.PACKED.byteCount(PackedInts.VERSION_CURRENT, off, bitsPerValue);
   output.writeBytes(nextBlocks, blockCount);
   Arrays.fill(nextValues, 0L);
   off = 0;
 }