Uses of Interface
it.unimi.dsi.fastutil.chars.CharHash.Strategy

Packages that use CharHash.Strategy
it.unimi.dsi.fastutil.chars Provides type-specific classes for character elements or keys. 
 

Uses of CharHash.Strategy in it.unimi.dsi.fastutil.chars
 

Fields in it.unimi.dsi.fastutil.chars declared as CharHash.Strategy
protected  CharHash.Strategy CharOpenCustomHashSet.strategy
          The hash strategy of this custom set.
protected  CharHash.Strategy CharLinkedOpenCustomHashSet.strategy
          The hash strategy of this custom set.
 

Methods in it.unimi.dsi.fastutil.chars that return CharHash.Strategy
 CharHash.Strategy CharOpenCustomHashSet.strategy()
          Returns the hashing strategy.
 CharHash.Strategy CharLinkedOpenCustomHashSet.strategy()
          Returns the hashing strategy.
 

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



Copyright © 2011. All Rights Reserved.