Package | Description |
---|---|
com.googlecode.javaewah.datastructure |
Modifier and Type | Class and Description |
---|---|
class |
BitSet
This is an optimized version of Java's BitSet.
|
class |
ImmutableBitSet
This is an immutable version of the BitSet class in this same package.
|
Modifier and Type | Method and Description |
---|---|
void |
BitSet.and(WordArray bs)
Compute bitwise AND.
|
int |
BitSet.andcardinality(WordArray bs)
Compute cardinality of bitwise AND.
|
void |
BitSet.andNot(WordArray bs)
Compute bitwise AND NOT.
|
int |
BitSet.andNotcardinality(WordArray bs)
Compute cardinality of bitwise AND NOT.
|
boolean |
BitSet.intersects(WordArray bs)
Checks whether two bitsets intersect.
|
void |
BitSet.or(WordArray bs)
Compute bitwise OR.
|
int |
BitSet.orcardinality(WordArray bs)
Compute cardinality of bitwise OR.
|
void |
BitSet.xor(WordArray bs)
Compute bitwise XOR.
|
int |
BitSet.xorcardinality(WordArray bs)
Compute cardinality of bitwise XOR.
|