Uses of Class
javolution.util.FastBitSet

Packages that use FastBitSet
javolution.util Provides high-performance collection classes and miscellaneous utilities; although this package provides very few collection classes, they are substitutes for most of java.util.* classes (for example, java.util.IdentityHashMap would be a FastMap with an identity key comparator). 
 

Uses of FastBitSet in javolution.util
 

Methods in javolution.util that return FastBitSet
 FastBitSet FastBitSet.get(int fromIndex, int toIndex)
          Returns a new bit set composed of a range of bits from this one.
static FastBitSet FastBitSet.newInstance()
          Returns a new, preallocated or recycled set instance (on the stack when executing in a StackContext).
 

Methods in javolution.util with parameters of type FastBitSet
 void FastBitSet.and(FastBitSet that)
          Performs the logical AND operation on this bit set and the given bit set.
 void FastBitSet.andNot(FastBitSet that)
          Performs the logical AND operation on this bit set and the complement of the given bit set.
 boolean FastBitSet.intersects(FastBitSet that)
          Returns true if this bit set shares at least one common bit with the specified bit set.
 void FastBitSet.or(FastBitSet that)
          Performs the logical OR operation on this bit set and the one specified.
static void FastBitSet.recycle(FastBitSet instance)
          Recycles a set instance immediately (on the stack when executing in a StackContext).
 void FastBitSet.xor(FastBitSet that)
          Performs the logical XOR operation on this bit set and the one specified.
 



Copyright © 2005-2012 Javolution. All Rights Reserved.