Uses of Interface
it.unimi.dsi.fastutil.doubles.DoubleHash.Strategy

Packages that use DoubleHash.Strategy
it.unimi.dsi.fastutil.doubles Provides type-specific classes for double elements or keys. 
 

Uses of DoubleHash.Strategy in it.unimi.dsi.fastutil.doubles
 

Fields in it.unimi.dsi.fastutil.doubles declared as DoubleHash.Strategy
protected  DoubleHash.Strategy DoubleOpenCustomHashSet.strategy
          The hash strategy of this custom set.
protected  DoubleHash.Strategy DoubleLinkedOpenCustomHashSet.strategy
          The hash strategy of this custom set.
 

Methods in it.unimi.dsi.fastutil.doubles that return DoubleHash.Strategy
 DoubleHash.Strategy DoubleOpenCustomHashSet.strategy()
          Returns the hashing strategy.
 DoubleHash.Strategy DoubleLinkedOpenCustomHashSet.strategy()
          Returns the hashing strategy.
 

Constructors in it.unimi.dsi.fastutil.doubles with parameters of type DoubleHash.Strategy
DoubleLinkedOpenCustomHashSet(Collection<? extends Double> c, DoubleHash.Strategy strategy)
          Creates a new hash set with Hash.DEFAULT_LOAD_FACTOR as load factor copying a given collection.
DoubleLinkedOpenCustomHashSet(Collection<? extends Double> c, float f, DoubleHash.Strategy strategy)
          Creates a new hash set copying a given collection.
DoubleLinkedOpenCustomHashSet(double[] a, DoubleHash.Strategy strategy)
          Creates a new hash set with Hash.DEFAULT_LOAD_FACTOR as load factor copying the elements of an array.
DoubleLinkedOpenCustomHashSet(double[] a, float f, DoubleHash.Strategy strategy)
          Creates a new hash set copying the elements of an array.
DoubleLinkedOpenCustomHashSet(double[] a, int offset, int length, DoubleHash.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.
DoubleLinkedOpenCustomHashSet(double[] a, int offset, int length, float f, DoubleHash.Strategy strategy)
          Creates a new hash set and fills it with the elements of a given array.
DoubleLinkedOpenCustomHashSet(DoubleCollection c, DoubleHash.Strategy strategy)
          Creates a new hash set with Hash.DEFAULT_LOAD_FACTOR as load factor copying a given type-specific collection.
DoubleLinkedOpenCustomHashSet(DoubleCollection c, float f, DoubleHash.Strategy strategy)
          Creates a new hash set copying a given type-specific collection.
DoubleLinkedOpenCustomHashSet(DoubleHash.Strategy strategy)
          Creates a new hash set with initial expected Hash.DEFAULT_INITIAL_SIZE elements and Hash.DEFAULT_LOAD_FACTOR as load factor.
DoubleLinkedOpenCustomHashSet(DoubleIterator i, DoubleHash.Strategy strategy)
          Creates a new hash set with Hash.DEFAULT_LOAD_FACTOR as load factor using elements provided by a type-specific iterator.
DoubleLinkedOpenCustomHashSet(DoubleIterator i, float f, DoubleHash.Strategy strategy)
          Creates a new hash set using elements provided by a type-specific iterator.
DoubleLinkedOpenCustomHashSet(int expected, DoubleHash.Strategy strategy)
          Creates a new hash set with Hash.DEFAULT_LOAD_FACTOR as load factor.
DoubleLinkedOpenCustomHashSet(int expected, float f, DoubleHash.Strategy strategy)
          Creates a new hash set.
DoubleLinkedOpenCustomHashSet(Iterator<?> i, DoubleHash.Strategy strategy)
          Creates a new hash set with Hash.DEFAULT_LOAD_FACTOR as load factor using elements provided by an iterator.
DoubleLinkedOpenCustomHashSet(Iterator<?> i, float f, DoubleHash.Strategy strategy)
          Creates a new hash set using elements provided by an iterator.
DoubleOpenCustomHashSet(Collection<? extends Double> c, DoubleHash.Strategy strategy)
          Creates a new hash set with Hash.DEFAULT_LOAD_FACTOR as load factor copying a given collection.
DoubleOpenCustomHashSet(Collection<? extends Double> c, float f, DoubleHash.Strategy strategy)
          Creates a new hash set copying a given collection.
DoubleOpenCustomHashSet(double[] a, DoubleHash.Strategy strategy)
          Creates a new hash set with Hash.DEFAULT_LOAD_FACTOR as load factor copying the elements of an array.
DoubleOpenCustomHashSet(double[] a, float f, DoubleHash.Strategy strategy)
          Creates a new hash set copying the elements of an array.
DoubleOpenCustomHashSet(double[] a, int offset, int length, DoubleHash.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.
DoubleOpenCustomHashSet(double[] a, int offset, int length, float f, DoubleHash.Strategy strategy)
          Creates a new hash set and fills it with the elements of a given array.
DoubleOpenCustomHashSet(DoubleCollection c, DoubleHash.Strategy strategy)
          Creates a new hash set with Hash.DEFAULT_LOAD_FACTOR as load factor copying a given type-specific collection.
DoubleOpenCustomHashSet(DoubleCollection c, float f, DoubleHash.Strategy strategy)
          Creates a new hash set copying a given type-specific collection.
DoubleOpenCustomHashSet(DoubleHash.Strategy strategy)
          Creates a new hash set with initial expected Hash.DEFAULT_INITIAL_SIZE elements and Hash.DEFAULT_LOAD_FACTOR as load factor.
DoubleOpenCustomHashSet(DoubleIterator i, DoubleHash.Strategy strategy)
          Creates a new hash set with Hash.DEFAULT_LOAD_FACTOR as load factor using elements provided by a type-specific iterator.
DoubleOpenCustomHashSet(DoubleIterator i, float f, DoubleHash.Strategy strategy)
          Creates a new hash set using elements provided by a type-specific iterator.
DoubleOpenCustomHashSet(int expected, DoubleHash.Strategy strategy)
          Creates a new hash set with Hash.DEFAULT_LOAD_FACTOR as load factor.
DoubleOpenCustomHashSet(int expected, float f, DoubleHash.Strategy strategy)
          Creates a new hash set.
DoubleOpenCustomHashSet(Iterator<?> i, DoubleHash.Strategy strategy)
          Creates a new hash set with Hash.DEFAULT_LOAD_FACTOR as load factor using elements provided by an iterator.
DoubleOpenCustomHashSet(Iterator<?> i, float f, DoubleHash.Strategy strategy)
          Creates a new hash set using elements provided by an iterator.
 



Copyright © 2011. All Rights Reserved.