Package | Description |
---|---|
javolution.util |
High-performance collection classes with
worst case execution time behavior documented. |
Modifier and Type | Method and Description |
---|---|
FastBitSet |
FastBitSet.addAll(FastCollection<? extends Index> elements) |
FastBitSet |
FastBitSet.addAll(Index... elements) |
FastBitSet |
FastBitSet.get(int fromIndex,
int toIndex)
Returns a new bit set composed of a range of bits from this one.
|
FastBitSet |
FastBitSet.shared() |
FastBitSet |
FastBitSet.unmodifiable() |
Modifier and Type | Method and Description |
---|---|
void |
FastBitSet.and(FastBitSet that)
Performs the logical AND operation on this bit set and the
given bit set.
|
void |
FastBitSet.andNot(FastBitSet that)
Performs the logical AND operation on this bit set and the
complement of the given bit set.
|
boolean |
FastBitSet.intersects(FastBitSet that)
Returns
true if this bit set shares at least one
common bit with the specified bit set. |
void |
FastBitSet.or(FastBitSet that)
Performs the logical OR operation on this bit set and the one specified.
|
void |
FastBitSet.xor(FastBitSet that)
Performs the logical XOR operation on this bit set and the one specified.
|
Copyright © 2005-2013 Javolution. All Rights Reserved.