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

org.roaringbitmap.AppendableStorage Maven / Gradle / Ivy

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