Package pascal.taie.util.collection
Interface IBitSet
- All Superinterfaces:
Copyable<IBitSet>
,Serializable
- All Known Implementing Classes:
AbstractBitSet
,RegularBitSet
,SparseBitSet
Interface for different bit set implementations.
This interface is similar to Set
. The main motivation
to reinvent a bit set is that the APIs of Set
do not fulfill the requirements of program analysis.
For APIs that may modify a bit set, such set(int)
,
and(IBitSet)
, and or(IBitSet)
, this implementation
returns whether the bit set changed. In addition, it provides some
useful operations that are absent in Set
.
-
Nested Class Summary
-
Method Summary
Modifier and TypeMethodDescriptionboolean
Performs a logical AND of this target bit set with the argument bit set.boolean
Clears all of the bits in thisBitSet
whose corresponding bit is set in the specifiedBitSet
.int
Returns the number of bits set totrue
in thisBitSet
.void
clear()
Sets all of the bits in this BitSet tofalse
.boolean
clear
(int bitIndex) Sets the bit specified by the index tofalse
.boolean
Returnstrue
if thisBitSet
contains all set bits in the specifiedBitSet
.boolean
Returnsfalse
if the specifiedBitSet
has any bits set totrue
that are also set totrue
in thisBitSet
.void
flip
(int bitIndex) Sets the bit at the specified index to the complement of its current value.boolean
get
(int bitIndex) Returns the value of the bit with the specified index.boolean
intersects
(IBitSet set) Returnstrue
if the specifiedBitSet
has any bits set totrue
that are also set totrue
in thisBitSet
.boolean
isEmpty()
Returns true if thisBitSet
contains no bits that are set totrue
.static boolean
default <R> R
iterateBits
(IBitSet.Action<R> action) Iterates all set bits in this set and takes action on them.int
length()
Returns the "logical size" of thisBitSet
: the index of the highest set bit in theBitSet
plus one.static IBitSet
newBitSet
(boolean isSparse) Creates a new set.int
nextClearBit
(int fromIndex) Returns the index of the first bit that is set tofalse
that occurs on or after the specified starting index.int
nextSetBit
(int fromIndex) Returns the index of the first bit that is set totrue
that occurs on or after the specified starting index.static IBitSet
of
(int... bits) Creates a bit set that contains given bits.boolean
Performs a logical OR of this bit set with the bit set argument.Performs a logical OR of this bit set with the bit set argument, computes and returns the difference set between given bit set and this set (before performing logical OR).int
previousClearBit
(int fromIndex) Returns the index of the nearest bit that is set tofalse
that occurs on or before the specified starting index.int
previousSetBit
(int fromIndex) Returns the index of the nearest bit that is set totrue
that occurs on or before the specified starting index.boolean
set
(int bitIndex) Sets the bit at the specified index totrue
.boolean
set
(int bitIndex, boolean value) Sets the bit at the specified index to the specified value.void
Sets the content of this bit set to the same as specified bit set.int
size()
Returns the number of bits of space actually in use by thisBitSet
to represent bit values.boolean
Performs a logical XOR of this bit set with the bit set argument.
-
Method Details
-
set
boolean set(int bitIndex) Sets the bit at the specified index totrue
.- Parameters:
bitIndex
- a bit index- Returns:
true
if this BitSet changed as a result of the call- Throws:
IndexOutOfBoundsException
- if the specified index is negative
-
set
boolean set(int bitIndex, boolean value) Sets the bit at the specified index to the specified value.- Parameters:
bitIndex
- a bit indexvalue
- a boolean value to set- Returns:
true
if this BitSet changed as a result of the call- Throws:
IndexOutOfBoundsException
- if the specified index is negative
-
clear
boolean clear(int bitIndex) Sets the bit specified by the index tofalse
.- Parameters:
bitIndex
- the index of the bit to be cleared- Returns:
true
if this BitSet changed as a result of the call- Throws:
IndexOutOfBoundsException
- if the specified index is negative
-
get
boolean get(int bitIndex) Returns the value of the bit with the specified index. The value istrue
if the bit with the indexbitIndex
is currently set in thisBitSet
; otherwise, the result isfalse
.- Parameters:
bitIndex
- the bit index- Returns:
- the value of the bit with the specified index
- Throws:
IndexOutOfBoundsException
- if the specified index is negative
-
flip
void flip(int bitIndex) Sets the bit at the specified index to the complement of its current value. This operation must modify the BitSet.- Parameters:
bitIndex
- the index of the bit to flip- Throws:
IndexOutOfBoundsException
- if the specified index is negative
-
nextSetBit
int nextSetBit(int fromIndex) Returns the index of the first bit that is set totrue
that occurs on or after the specified starting index. If no such bit exists then-1
is returned.To iterate over the
true
bits in aBitSet
, use the following loop:for (int i = bs.nextSetBit(0); i >= 0; i = bs.nextSetBit(i+1)) { // operate on index i here if (i == Integer.MAX_VALUE) { break; // or (i+1) would overflow } }
- Parameters:
fromIndex
- the index to start checking from (inclusive)- Returns:
- the index of the next set bit, or
-1
if there is no such bit - Throws:
IndexOutOfBoundsException
- if the specified index is negative
-
nextClearBit
int nextClearBit(int fromIndex) Returns the index of the first bit that is set tofalse
that occurs on or after the specified starting index.- Parameters:
fromIndex
- the index to start checking from (inclusive)- Returns:
- the index of the next clear bit
- Throws:
IndexOutOfBoundsException
- if the specified index is negative
-
previousSetBit
int previousSetBit(int fromIndex) Returns the index of the nearest bit that is set totrue
that occurs on or before the specified starting index. If no such bit exists, or if-1
is given as the starting index, then-1
is returned.To iterate over the
true
bits in aBitSet
, use the following loop:for (int i = bs.length(); (i = bs.previousSetBit(i-1)) >= 0; ) { // operate on index i here }
- Parameters:
fromIndex
- the index to start checking from (inclusive)- Returns:
- the index of the previous set bit, or
-1
if there is no such bit - Throws:
IndexOutOfBoundsException
- if the specified index is less than-1
-
previousClearBit
int previousClearBit(int fromIndex) Returns the index of the nearest bit that is set tofalse
that occurs on or before the specified starting index. If no such bit exists, or if-1
is given as the starting index, then-1
is returned.- Parameters:
fromIndex
- the index to start checking from (inclusive)- Returns:
- the index of the previous clear bit, or
-1
if there is no such bit - Throws:
IndexOutOfBoundsException
- if the specified index is less than-1
-
intersects
Returnstrue
if the specifiedBitSet
has any bits set totrue
that are also set totrue
in thisBitSet
.- Parameters:
set
-BitSet
to intersect with- Returns:
- boolean indicating whether this
BitSet
intersects the specifiedBitSet
-
disjoints
Returnsfalse
if the specifiedBitSet
has any bits set totrue
that are also set totrue
in thisBitSet
.- Parameters:
set
-BitSet
to disjoint with- Returns:
- boolean indicating whether this
BitSet
disjoints the specifiedBitSet
-
contains
Returnstrue
if thisBitSet
contains all set bits in the specifiedBitSet
.- Parameters:
set
- bit set to be checked for containment in this set.- Returns:
- boolean indicating whether this
BitSet
contains all set bits in the specifiedBitSet
-
and
Performs a logical AND of this target bit set with the argument bit set. This bit set is modified so that each bit in it has the valuetrue
if and only if it both initially had the valuetrue
and the corresponding bit in the bit set argument also had the valuetrue
.- Parameters:
set
- a bit set- Returns:
true
if this bit set changed as a result of the call
-
andNot
Clears all of the bits in thisBitSet
whose corresponding bit is set in the specifiedBitSet
.- Parameters:
set
- theBitSet
with which to mask thisBitSet
- Returns:
true
if this bit set changed as a result of the call
-
or
Performs a logical OR of this bit set with the bit set argument. This bit set is modified so that a bit in it has the valuetrue
if and only if it either already had the valuetrue
or the corresponding bit in the bit set argument has the valuetrue
.- Parameters:
set
- a bit set- Returns:
true
if this bit set changed as a result of the call
-
orDiff
Performs a logical OR of this bit set with the bit set argument, computes and returns the difference set between given bit set and this set (before performing logical OR).- Parameters:
set
- a bit set.- Returns:
- a new bit set of bit values that are present in the bit set argument and were absent in this bit set before.
-
xor
Performs a logical XOR of this bit set with the bit set argument. This bit set is modified so that a bit in it has the valuetrue
if and only if one of the following statements holds:- The bit initially has the value
true
, and the corresponding bit in the argument has the valuefalse
. - The bit initially has the value
false
, and the corresponding bit in the argument has the valuetrue
.
- Parameters:
set
- a bit set- Returns:
true
if this bit set changed as a result of the call
- The bit initially has the value
-
setTo
Sets the content of this bit set to the same as specified bit set.- Parameters:
set
- a bit set
-
clear
void clear()Sets all of the bits in this BitSet tofalse
. -
iterateBits
Iterates all set bits in this set and takes action on them. -
isEmpty
boolean isEmpty()Returns true if thisBitSet
contains no bits that are set totrue
.- Returns:
- boolean indicating whether this
BitSet
is empty
-
length
int length()Returns the "logical size" of thisBitSet
: the index of the highest set bit in theBitSet
plus one. Returns zero if theBitSet
contains no set bits.- Returns:
- the logical size of this
BitSet
-
size
int size()Returns the number of bits of space actually in use by thisBitSet
to represent bit values. The maximum element in the set is the size - 1st element.- Returns:
- the number of bits currently in this bit set
-
cardinality
int cardinality()Returns the number of bits set totrue
in thisBitSet
.- Returns:
- the number of bits set to
true
in thisBitSet
-
newBitSet
Creates a new set. -
isSparse
- Returns:
true
if the given bit set is sparse.
-
of
Creates a bit set that contains given bits.
-