Uses of Interface
it.unimi.dsi.fastutil.ints.IntHash.Strategy

Packages that use IntHash.Strategy
it.unimi.dsi.fastutil.ints Provides type-specific classes for integer elements or keys. 
 

Uses of IntHash.Strategy in it.unimi.dsi.fastutil.ints
 

Fields in it.unimi.dsi.fastutil.ints declared as IntHash.Strategy
protected  IntHash.Strategy IntOpenCustomHashSet.strategy
          The hash strategy of this custom set.
protected  IntHash.Strategy IntLinkedOpenCustomHashSet.strategy
          The hash strategy of this custom set.
 

Methods in it.unimi.dsi.fastutil.ints that return IntHash.Strategy
 IntHash.Strategy IntOpenCustomHashSet.strategy()
          Returns the hashing strategy.
 IntHash.Strategy IntLinkedOpenCustomHashSet.strategy()
          Returns the hashing strategy.
 

Constructors in it.unimi.dsi.fastutil.ints with parameters of type IntHash.Strategy
IntLinkedOpenCustomHashSet(Collection<? extends Integer> c, float f, IntHash.Strategy strategy)
          Creates a new hash set copying a given collection.
IntLinkedOpenCustomHashSet(Collection<? extends Integer> c, IntHash.Strategy strategy)
          Creates a new hash set with Hash.DEFAULT_LOAD_FACTOR as load factor copying a given collection.
IntLinkedOpenCustomHashSet(int[] a, float f, IntHash.Strategy strategy)
          Creates a new hash set copying the elements of an array.
IntLinkedOpenCustomHashSet(int[] a, IntHash.Strategy strategy)
          Creates a new hash set with Hash.DEFAULT_LOAD_FACTOR as load factor copying the elements of an array.
IntLinkedOpenCustomHashSet(int[] a, int offset, int length, float f, IntHash.Strategy strategy)
          Creates a new hash set and fills it with the elements of a given array.
IntLinkedOpenCustomHashSet(int[] a, int offset, int length, IntHash.Strategy strategy)
          Creates a new hash set with Hash.DEFAULT_LOAD_FACTOR as load factor and fills it with the elements of a given array.
IntLinkedOpenCustomHashSet(IntCollection c, float f, IntHash.Strategy strategy)
          Creates a new hash set copying a given type-specific collection.
IntLinkedOpenCustomHashSet(IntCollection c, IntHash.Strategy strategy)
          Creates a new hash set with Hash.DEFAULT_LOAD_FACTOR as load factor copying a given type-specific collection.
IntLinkedOpenCustomHashSet(int expected, float f, IntHash.Strategy strategy)
          Creates a new hash set.
IntLinkedOpenCustomHashSet(IntHash.Strategy strategy)
          Creates a new hash set with initial expected Hash.DEFAULT_INITIAL_SIZE elements and Hash.DEFAULT_LOAD_FACTOR as load factor.
IntLinkedOpenCustomHashSet(int expected, IntHash.Strategy strategy)
          Creates a new hash set with Hash.DEFAULT_LOAD_FACTOR as load factor.
IntLinkedOpenCustomHashSet(IntIterator i, float f, IntHash.Strategy strategy)
          Creates a new hash set using elements provided by a type-specific iterator.
IntLinkedOpenCustomHashSet(IntIterator i, IntHash.Strategy strategy)
          Creates a new hash set with Hash.DEFAULT_LOAD_FACTOR as load factor using elements provided by a type-specific iterator.
IntLinkedOpenCustomHashSet(Iterator<?> i, float f, IntHash.Strategy strategy)
          Creates a new hash set using elements provided by an iterator.
IntLinkedOpenCustomHashSet(Iterator<?> i, IntHash.Strategy strategy)
          Creates a new hash set with Hash.DEFAULT_LOAD_FACTOR as load factor using elements provided by an iterator.
IntOpenCustomHashSet(Collection<? extends Integer> c, float f, IntHash.Strategy strategy)
          Creates a new hash set copying a given collection.
IntOpenCustomHashSet(Collection<? extends Integer> c, IntHash.Strategy strategy)
          Creates a new hash set with Hash.DEFAULT_LOAD_FACTOR as load factor copying a given collection.
IntOpenCustomHashSet(int[] a, float f, IntHash.Strategy strategy)
          Creates a new hash set copying the elements of an array.
IntOpenCustomHashSet(int[] a, IntHash.Strategy strategy)
          Creates a new hash set with Hash.DEFAULT_LOAD_FACTOR as load factor copying the elements of an array.
IntOpenCustomHashSet(int[] a, int offset, int length, float f, IntHash.Strategy strategy)
          Creates a new hash set and fills it with the elements of a given array.
IntOpenCustomHashSet(int[] a, int offset, int length, IntHash.Strategy strategy)
          Creates a new hash set with Hash.DEFAULT_LOAD_FACTOR as load factor and fills it with the elements of a given array.
IntOpenCustomHashSet(IntCollection c, float f, IntHash.Strategy strategy)
          Creates a new hash set copying a given type-specific collection.
IntOpenCustomHashSet(IntCollection c, IntHash.Strategy strategy)
          Creates a new hash set with Hash.DEFAULT_LOAD_FACTOR as load factor copying a given type-specific collection.
IntOpenCustomHashSet(int expected, float f, IntHash.Strategy strategy)
          Creates a new hash set.
IntOpenCustomHashSet(IntHash.Strategy strategy)
          Creates a new hash set with initial expected Hash.DEFAULT_INITIAL_SIZE elements and Hash.DEFAULT_LOAD_FACTOR as load factor.
IntOpenCustomHashSet(int expected, IntHash.Strategy strategy)
          Creates a new hash set with Hash.DEFAULT_LOAD_FACTOR as load factor.
IntOpenCustomHashSet(IntIterator i, float f, IntHash.Strategy strategy)
          Creates a new hash set using elements provided by a type-specific iterator.
IntOpenCustomHashSet(IntIterator i, IntHash.Strategy strategy)
          Creates a new hash set with Hash.DEFAULT_LOAD_FACTOR as load factor using elements provided by a type-specific iterator.
IntOpenCustomHashSet(Iterator<?> i, float f, IntHash.Strategy strategy)
          Creates a new hash set using elements provided by an iterator.
IntOpenCustomHashSet(Iterator<?> i, IntHash.Strategy strategy)
          Creates a new hash set with Hash.DEFAULT_LOAD_FACTOR as load factor using elements provided by an iterator.
 



Copyright © 2011. All Rights Reserved.