| Package | Description |
|---|---|
| javolution.util |
High-performance collection classes with
worst case execution time behavior documented. |
| Modifier and Type | Method and Description |
|---|---|
FastBitSet |
FastBitSet.get(int fromIndex,
int toIndex)
Returns a new bit set composed of a range of bits from this one.
|
static FastBitSet |
FastBitSet.of(Index... indices)
Returns a new bit set holding the specified indices
(convenience method).
|
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 © 2017. All rights reserved.