Class Simple16

java.lang.Object
me.lemire.integercompression.Simple16
All Implemented Interfaces:
IntegerCODEC, SkippableIntegerCODEC

public final class Simple16 extends Object implements IntegerCODEC, SkippableIntegerCODEC
This is an implementation of the popular Simple16 scheme. It is limited to 28-bit integers (between 0 and 2^28-1). Note that this does not use differential coding: if you are working on sorted lists, you must compute the deltas separately.

Adapted by D. Lemire from the Apache Lucene project.