Package com.koloboke.collect.set.hash

Contains interfaces of Set specializations, based on hash tables, their factories and static factory methods.

See:
          Description

Interface Summary
HashByteSet An interface for ByteSets, based on hash tables.
HashByteSetFactory An immutable factory of HashByteSets.
HashCharSet An interface for CharSets, based on hash tables.
HashCharSetFactory An immutable factory of HashCharSets.
HashDoubleSet An interface for DoubleSets, based on hash tables.
HashDoubleSetFactory An immutable factory of HashDoubleSets.
HashFloatSet An interface for FloatSets, based on hash tables.
HashFloatSetFactory An immutable factory of HashFloatSets.
HashIntSet An interface for IntSets, based on hash tables.
HashIntSetFactory An immutable factory of HashIntSets.
HashLongSet An interface for LongSets, based on hash tables.
HashLongSetFactory An immutable factory of HashLongSets.
HashObjSet<E> An interface for ObjSets, based on hash tables.
HashObjSetFactory<E> An immutable factory of HashObjSets.
HashShortSet An interface for ShortSets, based on hash tables.
HashShortSetFactory An immutable factory of HashShortSets.
 

Class Summary
HashByteSets This class consists only of static factory methods to construct HashByteSets, and the default HashByteSetFactory static provider (HashByteSets.getDefaultFactory()).
HashCharSets This class consists only of static factory methods to construct HashCharSets, and the default HashCharSetFactory static provider (HashCharSets.getDefaultFactory()).
HashDoubleSets This class consists only of static factory methods to construct HashDoubleSets, and the default HashDoubleSetFactory static provider (HashDoubleSets.getDefaultFactory()).
HashFloatSets This class consists only of static factory methods to construct HashFloatSets, and the default HashFloatSetFactory static provider (HashFloatSets.getDefaultFactory()).
HashIntSets This class consists only of static factory methods to construct HashIntSets, and the default HashIntSetFactory static provider (HashIntSets.getDefaultFactory()).
HashLongSets This class consists only of static factory methods to construct HashLongSets, and the default HashLongSetFactory static provider (HashLongSets.getDefaultFactory()).
HashObjSets This class consists only of static factory methods to construct HashObjSets, and the default HashObjSetFactory static provider (HashObjSets.getDefaultFactory()).
HashShortSets This class consists only of static factory methods to construct HashShortSets, and the default HashShortSetFactory static provider (HashShortSets.getDefaultFactory()).
 

Package com.koloboke.collect.set.hash Description

Contains interfaces of Set specializations, based on hash tables, their factories and static factory methods.

See Also:
com.koloboke.collect.hash