| 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 |
|---|---|
Container |
ArrayContainer.and(RunContainer x) |
abstract Container |
Container.and(RunContainer x)
Computes the bitwise AND of this container with another (intersection).
|
Container |
BitmapContainer.and(RunContainer x) |
Container |
RunContainer.and(RunContainer x) |
int |
ArrayContainer.andCardinality(RunContainer x) |
protected abstract int |
Container.andCardinality(RunContainer x) |
int |
BitmapContainer.andCardinality(RunContainer x) |
int |
RunContainer.andCardinality(RunContainer x) |
Container |
ArrayContainer.andNot(RunContainer x) |
abstract Container |
Container.andNot(RunContainer x)
Computes the bitwise ANDNOT of this container with another (difference).
|
Container |
BitmapContainer.andNot(RunContainer x) |
Container |
RunContainer.andNot(RunContainer x) |
protected boolean |
ArrayContainer.contains(RunContainer runContainer) |
protected abstract boolean |
Container.contains(RunContainer runContainer) |
protected boolean |
BitmapContainer.contains(RunContainer runContainer) |
protected boolean |
RunContainer.contains(RunContainer runContainer) |
Container |
ArrayContainer.iand(RunContainer x) |
abstract Container |
Container.iand(RunContainer x)
Computes the in-place bitwise AND of this container with another (intersection).
|
Container |
BitmapContainer.iand(RunContainer x) |
Container |
RunContainer.iand(RunContainer x) |
Container |
ArrayContainer.iandNot(RunContainer x) |
abstract Container |
Container.iandNot(RunContainer x)
Computes the in-place bitwise ANDNOT of this container with another (difference).
|
Container |
BitmapContainer.iandNot(RunContainer x) |
Container |
RunContainer.iandNot(RunContainer x) |
protected Container |
BitmapContainer.ilazyor(RunContainer x) |
boolean |
ArrayContainer.intersects(RunContainer x) |
abstract boolean |
Container.intersects(RunContainer x)
Returns true if the current container intersects the other container.
|
boolean |
BitmapContainer.intersects(RunContainer x) |
boolean |
RunContainer.intersects(RunContainer x) |
Container |
ArrayContainer.ior(RunContainer x) |
abstract Container |
Container.ior(RunContainer x)
Computes the in-place bitwise OR of this container with another (union).
|
Container |
BitmapContainer.ior(RunContainer x) |
Container |
RunContainer.ior(RunContainer x) |
Container |
ArrayContainer.ixor(RunContainer x) |
abstract Container |
Container.ixor(RunContainer x)
Computes the in-place bitwise XOR of this container with another (symmetric difference).
|
Container |
BitmapContainer.ixor(RunContainer x) |
Container |
RunContainer.ixor(RunContainer x) |
protected Container |
BitmapContainer.lazyor(RunContainer x) |
Container |
ArrayContainer.or(RunContainer x) |
abstract Container |
Container.or(RunContainer x)
Computes the bitwise OR of this container with another (union).
|
Container |
BitmapContainer.or(RunContainer x) |
Container |
RunContainer.or(RunContainer x) |
Container |
ArrayContainer.xor(RunContainer x) |
abstract Container |
Container.xor(RunContainer x)
Computes the bitwise XOR of this container with another (symmetric difference).
|
Container |
BitmapContainer.xor(RunContainer x) |
Container |
RunContainer.xor(RunContainer x) |
| Constructor and Description |
|---|
MappeableRunContainer(RunContainer bc)
Creates a new container from a non-mappeable one.
|
Copyright © 2017. All rights reserved.