Uses of Class
com.carrotsearch.hppc.BitSet
-
Packages that use BitSet Package Description com.carrotsearch.hppc -
-
Uses of BitSet in com.carrotsearch.hppc
Methods in com.carrotsearch.hppc that return BitSet Modifier and Type Method Description static BitSetBitSet. newInstance()Static constructor-like method similar to other (generic) collections.Methods in com.carrotsearch.hppc with parameters of type BitSet Modifier and Type Method Description voidBitSet. and(BitSet other)voidBitSet. andNot(BitSet other)static longBitSet. andNotCount(BitSet a, BitSet b)voidBitSet. intersect(BitSet other)this = this AND otherstatic longBitSet. intersectionCount(BitSet a, BitSet b)booleanBitSet. intersects(BitSet other)voidBitSet. or(BitSet other)voidBitSet. remove(BitSet other)Remove all elements set in other: this = this AND_NOT othervoidBitSet. union(BitSet other)this = this OR otherstatic longBitSet. unionCount(BitSet a, BitSet b)voidBitSet. xor(BitSet other)this = this XOR otherstatic longBitSet. xorCount(BitSet a, BitSet b)Constructors in com.carrotsearch.hppc with parameters of type BitSet Constructor Description BitSetIterator(BitSet obs)
-