| Package | Description |
|---|---|
| org.roaringbitmap |
The org.roaringbitmap package provides
one class (
RoaringBitmap) that users
can rely upon for fast set of integers. |
| org.roaringbitmap.buffer |
The org.roaringbitmap.buffer package provides
two classes (
MutableRoaringBitmap and
(ImmutableRoaringBitmap) that users
can rely upon for fast set of integers. |
| Modifier and Type | Method and Description |
|---|---|
ArrayContainer |
ArrayContainer.and(ArrayContainer value2) |
ArrayContainer |
BitmapContainer.and(ArrayContainer value2) |
ArrayContainer |
ArrayContainer.andNot(ArrayContainer value2) |
ArrayContainer |
ArrayContainer.andNot(BitmapContainer value2) |
ArrayContainer |
ArrayContainer.clone() |
ArrayContainer |
ArrayContainer.iand(ArrayContainer value2) |
ArrayContainer |
ArrayContainer.iandNot(ArrayContainer value2) |
ArrayContainer |
ArrayContainer.iandNot(BitmapContainer value2) |
ArrayContainer |
BitmapContainer.toArrayContainer()
Copies the data to an array container
|
| Modifier and Type | Method and Description |
|---|---|
ArrayContainer |
ArrayContainer.and(ArrayContainer value2) |
abstract Container |
Container.and(ArrayContainer x)
Computes the bitwise AND of this container with another (intersection).
|
ArrayContainer |
BitmapContainer.and(ArrayContainer value2) |
Container |
RunContainer.and(ArrayContainer x) |
int |
ArrayContainer.andCardinality(ArrayContainer value2) |
protected abstract int |
Container.andCardinality(ArrayContainer x) |
int |
BitmapContainer.andCardinality(ArrayContainer value2) |
int |
RunContainer.andCardinality(ArrayContainer x) |
ArrayContainer |
ArrayContainer.andNot(ArrayContainer value2) |
abstract Container |
Container.andNot(ArrayContainer x)
Computes the bitwise ANDNOT of this container with another (difference).
|
Container |
BitmapContainer.andNot(ArrayContainer value2) |
Container |
RunContainer.andNot(ArrayContainer x) |
protected boolean |
ArrayContainer.contains(ArrayContainer arrayContainer) |
protected abstract boolean |
Container.contains(ArrayContainer arrayContainer) |
protected boolean |
BitmapContainer.contains(ArrayContainer arrayContainer) |
protected boolean |
RunContainer.contains(ArrayContainer arrayContainer) |
ArrayContainer |
ArrayContainer.iand(ArrayContainer value2) |
abstract Container |
Container.iand(ArrayContainer x)
Computes the in-place bitwise AND of this container with another (intersection).
|
Container |
BitmapContainer.iand(ArrayContainer b2) |
Container |
RunContainer.iand(ArrayContainer x) |
ArrayContainer |
ArrayContainer.iandNot(ArrayContainer value2) |
abstract Container |
Container.iandNot(ArrayContainer x)
Computes the in-place bitwise ANDNOT of this container with another (difference).
|
Container |
BitmapContainer.iandNot(ArrayContainer b2) |
Container |
RunContainer.iandNot(ArrayContainer x) |
protected Container |
BitmapContainer.ilazyor(ArrayContainer value2) |
protected Container |
RunContainer.ilazyor(ArrayContainer x) |
boolean |
ArrayContainer.intersects(ArrayContainer value2) |
abstract boolean |
Container.intersects(ArrayContainer x)
Returns true if the current container intersects the other container.
|
boolean |
BitmapContainer.intersects(ArrayContainer value2) |
boolean |
RunContainer.intersects(ArrayContainer x) |
Container |
ArrayContainer.ior(ArrayContainer value2) |
abstract Container |
Container.ior(ArrayContainer x)
Computes the in-place bitwise OR of this container with another (union).
|
BitmapContainer |
BitmapContainer.ior(ArrayContainer value2) |
Container |
RunContainer.ior(ArrayContainer x) |
Container |
ArrayContainer.ixor(ArrayContainer value2) |
abstract Container |
Container.ixor(ArrayContainer x)
Computes the in-place bitwise XOR of this container with another (symmetric difference).
|
Container |
BitmapContainer.ixor(ArrayContainer value2) |
Container |
RunContainer.ixor(ArrayContainer x) |
protected Container |
ArrayContainer.lazyor(ArrayContainer value2) |
protected Container |
BitmapContainer.lazyor(ArrayContainer value2) |
protected Container |
RunContainer.lazyor(ArrayContainer x) |
protected void |
BitmapContainer.loadData(ArrayContainer arrayContainer) |
Container |
ArrayContainer.or(ArrayContainer value2) |
abstract Container |
Container.or(ArrayContainer x)
Computes the bitwise OR of this container with another (union).
|
Container |
BitmapContainer.or(ArrayContainer value2) |
Container |
RunContainer.or(ArrayContainer x) |
Container |
ArrayContainer.xor(ArrayContainer value2) |
abstract Container |
Container.xor(ArrayContainer x)
Computes the bitwise XOR of this container with another (symmetric difference).
|
Container |
BitmapContainer.xor(ArrayContainer value2) |
Container |
RunContainer.xor(ArrayContainer x) |
| Constructor and Description |
|---|
RunContainer(ArrayContainer arr,
int nbrRuns) |
| Constructor and Description |
|---|
MappeableArrayContainer(ArrayContainer bc)
Creates a new container from a non-mappeable one.
|
Copyright © 2017. All rights reserved.