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 BitSet
BitSet. 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 void
BitSet. and(BitSet other)
void
BitSet. andNot(BitSet other)
static long
BitSet. andNotCount(BitSet a, BitSet b)
void
BitSet. intersect(BitSet other)
this = this AND otherstatic long
BitSet. intersectionCount(BitSet a, BitSet b)
boolean
BitSet. intersects(BitSet other)
void
BitSet. or(BitSet other)
void
BitSet. remove(BitSet other)
Remove all elements set in other: this = this AND_NOT othervoid
BitSet. union(BitSet other)
this = this OR otherstatic long
BitSet. unionCount(BitSet a, BitSet b)
void
BitSet. xor(BitSet other)
this = this XOR otherstatic long
BitSet. xorCount(BitSet a, BitSet b)
Constructors in com.carrotsearch.hppc with parameters of type BitSet Constructor Description BitSetIterator(BitSet obs)
-