me.lemire.integercompression.differential.IntegratedIntegerCODEC Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of JavaFastPFOR Show documentation
Show all versions of JavaFastPFOR Show documentation
It is a library to compress and uncompress arrays of integers
very fast. The assumption is that most (but not all) values in
your array use less than 32 bits.
/**
* This code is released under the
* Apache License Version 2.0 http://www.apache.org/licenses/.
*
* (c) Daniel Lemire, http://lemire.me/en/
*/
package me.lemire.integercompression.differential;
import me.lemire.integercompression.IntegerCODEC;
/**
* This is just like IntegerCODEC, except that it indicates that delta coding is
* "integrated", so that you don't need a separate step for delta coding.
*
* @author Daniel Lemire
*/
public interface IntegratedIntegerCODEC extends IntegerCODEC {
}