接口 LongBitmapDataProvider

所有超级接口:
ImmutableLongBitmapDataProvider
所有已知实现类:
Roaring64Bitmap, Roaring64NavigableMap

public interface LongBitmapDataProvider extends ImmutableLongBitmapDataProvider
Representing a general bitmap interface.
  • 方法详细资料

    • addLong

      void addLong(long x)
      set the value to "true", whether it already appears or not.
      参数:
      x - long value
    • removeLong

      void removeLong(long x)
      If present remove the specified integers (effectively, sets its bit value to false)
      参数:
      x - long value representing the index in a bitmap
    • trim

      void trim()
      Recover allocated but unused memory.