Uses of Class
io.github.jbellis.jvector.util.FixedBitSet
Packages that use FixedBitSet
-
Uses of FixedBitSet in io.github.jbellis.jvector.util
Methods in io.github.jbellis.jvector.util that return FixedBitSetModifier and TypeMethodDescriptionFixedBitSet.clone()static FixedBitSetMake a copy of the given bits.static FixedBitSetFixedBitSet.ensureCapacity(FixedBitSet bits, int numBits) If the givenFixedBitSetis large enough to holdnumBits+1, returns the given bits, otherwise returns a newFixedBitSetwhich can hold the requested number of bits.Methods in io.github.jbellis.jvector.util with parameters of type FixedBitSetModifier and TypeMethodDescriptionvoidFixedBitSet.and(FixedBitSet other) this = this AND othervoidFixedBitSet.andNot(FixedBitSet other) this = this AND NOT otherstatic longFixedBitSet.andNotCount(FixedBitSet a, FixedBitSet b) Returns the popcount or cardinality of "a and not b" or "intersection(a, not(b))".static FixedBitSetFixedBitSet.ensureCapacity(FixedBitSet bits, int numBits) If the givenFixedBitSetis large enough to holdnumBits+1, returns the given bits, otherwise returns a newFixedBitSetwhich can hold the requested number of bits.static longFixedBitSet.intersectionCount(FixedBitSet a, FixedBitSet b) Returns the popcount or cardinality of the intersection of the two sets.booleanFixedBitSet.intersects(FixedBitSet other) returns true if the sets have any elements in commonvoidFixedBitSet.or(FixedBitSet other) this = this OR otherstatic longFixedBitSet.unionCount(FixedBitSet a, FixedBitSet b) Returns the popcount or cardinality of the union of the two sets.voidFixedBitSet.xor(FixedBitSet other) this = this XOR other