org.roaringbitmap.buffer.MutableRoaringBitmapPrivate Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of RoaringBitmap Show documentation
Show all versions of RoaringBitmap Show documentation
Roaring bitmaps are compressed bitmaps (also called bitsets) which tend to outperform
conventional compressed bitmaps such as WAH or Concise.
package org.roaringbitmap.buffer;
/**
* This class enables accessing/executing not-public methods.
* Its usage should be reserved to very specific cases, and
* given should not be considered as part of the official API.
*/
@Deprecated
public class MutableRoaringBitmapPrivate {
public static void naivelazyor(MutableRoaringBitmap x1, MutableRoaringBitmap x2) {
x1.naivelazyor(x2);
}
public static void repairAfterLazy(MutableRoaringBitmap r) {
r.repairAfterLazy();
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy