Uses of Class
org.drools.util.bitmask.OpenBitSet
-
Packages that use OpenBitSet Package Description org.drools.util.bitmask -
-
Uses of OpenBitSet in org.drools.util.bitmask
Methods in org.drools.util.bitmask that return OpenBitSet Modifier and Type Method Description OpenBitSetOpenBitSet. clone()Methods in org.drools.util.bitmask with parameters of type OpenBitSet Modifier and Type Method Description voidOpenBitSet. and(OpenBitSet other)voidOpenBitSet. andNot(OpenBitSet other)static longOpenBitSet. andNotCount(OpenBitSet a, OpenBitSet b)Returns the popcount or cardinality of "a and not b" or "intersection(a, not(b))".voidOpenBitSet. intersect(OpenBitSet other)this = this AND otherstatic longOpenBitSet. intersectionCount(OpenBitSet a, OpenBitSet b)Returns the popcount or cardinality of the intersection of the two sets.booleanOpenBitSet. intersects(OpenBitSet other)returns true if the sets have any elements in commonvoidOpenBitSet. or(OpenBitSet other)voidOpenBitSet. remove(OpenBitSet other)Remove all elements set in other. this = this AND_NOT othervoidOpenBitSet. union(OpenBitSet other)this = this OR otherstatic longOpenBitSet. unionCount(OpenBitSet a, OpenBitSet b)Returns the popcount or cardinality of the union of the two sets.voidOpenBitSet. xor(OpenBitSet other)this = this XOR otherstatic longOpenBitSet. xorCount(OpenBitSet a, OpenBitSet b)Returns the popcount or cardinality of the exclusive-or of the two sets.
-