| Constructor and Description |
|---|
CompilationFinalBitSet(int nbits) |
public static CompilationFinalBitSet valueOf(int... values)
public static CompilationFinalBitSet getEmptyInstance()
public static CompilationFinalBitSet getStaticInstance(int i)
i - The integer value of the static bit set's content, i.e. 0 is the empty bit set, 1
has words {0x0..., 0x1}, 2 has {0x0..., 0x2}, and so on.public static int getNumberOfStaticInstances()
public int getStaticCacheKey()
public CompilationFinalBitSet copy()
public long[] toLongArray()
public boolean isEmpty()
public boolean isFull()
public int numberOfSetBits()
public boolean get(int b)
public void set(int b)
public void setRange(int lo,
int hi)
public void clearRange(int lo,
int hi)
public void clear()
public void clear(int index)
public void invert()
public void intersect(CompilationFinalBitSet other)
public void subtract(CompilationFinalBitSet other)
public void union(CompilationFinalBitSet other)
public void union(Abstract128BitSet bs)
public boolean isDisjoint(CompilationFinalBitSet other)
public boolean contains(CompilationFinalBitSet other)
public PrimitiveIterator.OfInt iterator()
public Spliterator.OfInt spliterator()
spliterator in interface Iterable<Integer>public IntStream stream()