| Package | Description |
|---|---|
| net.openhft.chronicle.wire |
| Modifier and Type | Class and Description |
|---|---|
class |
LongArrayValueBitSet
A
ChronicleBitSet backed by a LongArrayValues. |
class |
LongValueBitSet
A
ChronicleBitSet implementation backed by an array of
LongValues. |
| Modifier and Type | Method and Description |
|---|---|
void |
ChronicleBitSet.and(ChronicleBitSet bitSet)
Performs a logical AND with the given set.
|
void |
LongArrayValueBitSet.and(ChronicleBitSet set)
Performs a bitwise AND operation between this
ChronicleBitSet and the provided set. |
void |
LongValueBitSet.and(ChronicleBitSet set)
Performs a logical AND operation between this
ChronicleBitSet and the specified ChronicleBitSet. |
void |
ChronicleBitSet.andNot(ChronicleBitSet bitSet)
Clears the bits that are set in the given set from this set.
|
void |
LongArrayValueBitSet.andNot(ChronicleBitSet set)
Clears all the bits in this
ChronicleBitSet that are set in the specified ChronicleBitSet. |
void |
LongValueBitSet.andNot(ChronicleBitSet set)
Clears all the bits in this
ChronicleBitSet where the corresponding bit is set in the specified ChronicleBitSet. |
void |
ChronicleBitSet.copyFrom(ChronicleBitSet bitSet)
Copies all bits from
bitSet into this set. |
void |
LongArrayValueBitSet.copyFrom(ChronicleBitSet bitSet) |
void |
LongValueBitSet.copyFrom(ChronicleBitSet bitSet)
Copies the contents of
bitSet into this instance. |
boolean |
ChronicleBitSet.intersects(ChronicleBitSet bitSet)
Checks whether any bit is set in both this set and
bitSet. |
boolean |
LongArrayValueBitSet.intersects(ChronicleBitSet set)
Determines if there's any overlapping bit set to
true between this ChronicleBitSet and the given ChronicleBitSet. |
boolean |
LongValueBitSet.intersects(ChronicleBitSet set)
Checks if the current
ChronicleBitSet has any common set bits with the specified ChronicleBitSet. |
void |
ChronicleBitSet.or(ChronicleBitSet bitSet)
Performs a logical OR with the given set.
|
void |
LongArrayValueBitSet.or(ChronicleBitSet set)
Performs a logical OR of this bit set with the bit set argument.
|
void |
LongValueBitSet.or(ChronicleBitSet set)
Executes a logical OR operation between this
ChronicleBitSet and the provided ChronicleBitSet. |
void |
ChronicleBitSet.xor(ChronicleBitSet bitSet)
Performs a logical XOR with the given set.
|
void |
LongArrayValueBitSet.xor(ChronicleBitSet set)
Performs a logical XOR of this bit set with the bit set argument.
|
void |
LongValueBitSet.xor(ChronicleBitSet set)
Performs a logical XOR of this bit set with the bit set argument.
|
Copyright © 2026 Chronicle Software Ltd. All rights reserved.