Package | Description |
---|---|
_templates.javolution.util |
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.newInstance()
Returns a new, preallocated or
recycled set instance
(on the stack when executing in a StackContext ). |
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.
|
static void |
FastBitSet.recycle(FastBitSet instance)
Recycles a set
instance immediately
(on the stack when executing in a StackContext ). |
void |
FastBitSet.xor(FastBitSet that)
Performs the logical XOR operation on this bit set and the one specified.
|
Copyright © 2005–2018 Javolution. All rights reserved.