All Downloads are FREE. Search and download functionalities are using the official Maven repository.

me.lemire.integercompression.differential.IntegratedByteIntegerCODEC Maven / Gradle / Ivy

Go to download

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.

There is a newer version: 0.2.1
Show newest version
/**
 * 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 {
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy