| Package | Description |
|---|---|
| net.openhft.chronicle.wire |
| Modifier and Type | Class and Description |
|---|---|
class |
LongArrayValueBitSet
This
ChronicleBitSet is intended to be shared between processes. |
class |
LongValueBitSet
This is the LongValueBitSet class extending AbstractCloseable.
|
| Modifier and Type | Method and Description |
|---|---|
void |
ChronicleBitSet.and(ChronicleBitSet bitSet) |
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) |
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) |
void |
LongArrayValueBitSet.copyFrom(ChronicleBitSet bitSet) |
void |
LongValueBitSet.copyFrom(ChronicleBitSet bitSet) |
boolean |
ChronicleBitSet.intersects(ChronicleBitSet 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) |
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) |
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 © 2024. All rights reserved.