me.lemire.integercompression.differential.IntegratedByteIntegerCODEC 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.ByteIntegerCODEC;
/**
* Interface describing a CODEC to compress integers to bytes.
*
* "Integrated" means that it uses differential coding.
*
* @author Daniel Lemire
*
*/
public interface IntegratedByteIntegerCODEC extends ByteIntegerCODEC {
}