Uses of Class
es.urjc.etsii.grafo.util.collections.BitSet
Packages that use BitSet
-
Uses of BitSet in es.urjc.etsii.grafo.util.collections
Methods in es.urjc.etsii.grafo.util.collections that return BitSetModifier and TypeMethodDescriptionBitSet.clone()
Cloning thisBitSet
produces a newBitSet
that is equal to it.static BitSet
BitSet.difference
(BitSet a, BitSet b) Returns the difference between two sets as a new set.static BitSet
BitSet.intersection
(BitSet a, BitSet b) Returns the intersection between two sets as a new setstatic BitSet
Returns a new BitSet containing all elements in range [0, n] except those present in the given set.static BitSet
BitSet.of
(int maxSize, int... numbers) Initialize a new bitset with the given numbersstatic BitSet
BitSet.symmetricDifference
(BitSet a, BitSet b) Returns the symmetric difference between two sets as a new setstatic BitSet
Returns the union between two sets as a new setMethods in es.urjc.etsii.grafo.util.collections with parameters of type BitSetModifier and TypeMethodDescriptionvoid
Performs a logical AND of this target bit set with the argument bit set.void
Clears all of the bits in thisBitSet
whose corresponding bit is set in the specifiedBitSet
.void
BitSet.checkSameSize
(BitSet set) static BitSet
BitSet.difference
(BitSet a, BitSet b) Returns the difference between two sets as a new set.static BitSet
BitSet.intersection
(BitSet a, BitSet b) Returns the intersection between two sets as a new setboolean
BitSet.intersects
(BitSet set) Returns true if the specifiedBitSet
has any bits set totrue
that are also set totrue
in thisBitSet
.static BitSet
Returns a new BitSet containing all elements in range [0, n] except those present in the given set.void
Performs a logical OR of this bit set with the bit set argument.static BitSet
BitSet.symmetricDifference
(BitSet a, BitSet b) Returns the symmetric difference between two sets as a new setstatic BitSet
Returns the union between two sets as a new setvoid
Performs a logical XOR of this bit set with the bit set argument.Constructors in es.urjc.etsii.grafo.util.collections with parameters of type BitSet