org.roaringbitmap.AppendableStorage Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of spark-core Show documentation
Show all versions of spark-core Show documentation
Shaded version of Apache Spark 2.x.x for Presto
The newest version!
package org.roaringbitmap;
/**
* Key-value storage of 16 bit containers
* @param the type of stored container
*/
public interface AppendableStorage {
/**
* Appends the key and container to the storage, throws if the key is less
* than the current mark.
* @param key the key to append
* @param container the data to append
*/
void append(short key, T container);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy