Package org.roaringbitmap
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
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidappend(char key, T container)Appends the key and container to the storage, throws if the key is less than the current mark.
-
-
-
Method Detail
-
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 appendcontainer- the data to append
-
-