Package | Description |
---|---|
edu.georgetown.gucs.utility |
Modifier and Type | Method and Description |
---|---|
AntlrBitSet |
AntlrBitSet.and(AntlrBitSet a)
Performs AND operation
|
AntlrBitSet |
AntlrBitSet.clone()
Creates and returns a copy of this antlrBitSet
|
AntlrBitSet |
AntlrBitSet.not()
Provides the bitwise complement of this bitset
|
static AntlrBitSet |
AntlrBitSet.of(int el)
Creates a antlrBitSet with the given element
|
AntlrBitSet |
AntlrBitSet.or(AntlrBitSet a)
Performs OR operation
|
Modifier and Type | Method and Description |
---|---|
AntlrBitSet |
AntlrBitSet.and(AntlrBitSet a)
Performs AND operation
|
void |
AntlrBitSet.andInPlace(AntlrBitSet a)
Performs AND operation
|
AntlrBitSet |
AntlrBitSet.or(AntlrBitSet a)
Performs OR operation
|
void |
AntlrBitSet.orInPlace(AntlrBitSet a)
Performs OR operation
|
boolean |
AntlrBitSet.subset(AntlrBitSet a)
Returns whether this bitset is contained within a
|
void |
AntlrBitSet.subtractInPlace(AntlrBitSet a)
Subtracts the elements of the given antlrBitSet from this bitset in-place (turn off all bits of this bitset that
are in the given antlrBitSet)
|
void |
AntlrBitSet.xorInPlace(AntlrBitSet a)
Performs XOR operation
|