Interface AppendableStorage<T>

Type Parameters:
T - the type of stored container
All Known Implementing Classes:
FastRankRoaringBitmap, MutableRoaringArray, MutableRoaringBitmap, RoaringArray, RoaringBitmap

public interface AppendableStorage<T>
Key-value storage of 16 bit containers
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    append(char key, T container)
    Appends the key and container to the storage, throws if the key is less than the current mark.
  • Method Details

    • append

      void append(char key, T container)
      Appends the key and container to the storage, throws if the key is less than the current mark.
      Parameters:
      key - the key to append
      container - the data to append