Package | Description |
---|---|
com.carrotsearch.hppc |
Modifier and Type | Method and Description |
---|---|
static BitSet |
BitSet.newInstance()
Static constructor-like method similar to other (generic) collections.
|
Modifier and Type | Method and Description |
---|---|
void |
BitSet.and(BitSet other) |
void |
BitSet.andNot(BitSet other) |
static long |
BitSet.andNotCount(BitSet a,
BitSet b) |
void |
BitSet.intersect(BitSet other)
this = this AND other
|
static long |
BitSet.intersectionCount(BitSet a,
BitSet b) |
boolean |
BitSet.intersects(BitSet other) |
void |
BitSet.or(BitSet other) |
void |
BitSet.remove(BitSet other)
Remove all elements set in other: this = this AND_NOT other
|
void |
BitSet.union(BitSet other)
this = this OR other
|
static long |
BitSet.unionCount(BitSet a,
BitSet b) |
void |
BitSet.xor(BitSet other)
this = this XOR other
|
static long |
BitSet.xorCount(BitSet a,
BitSet b) |
Constructor and Description |
---|
BitSetIterator(BitSet obs) |
Copyright © 2018 Carrot Search s.c.. All rights reserved.