| Package | Description |
|---|---|
| it.unimi.dsi.fastutil.chars |
Provides type-specific classes for character elements or keys.
|
| Modifier and Type | Field and Description |
|---|---|
protected CharHash.Strategy |
Char2FloatOpenCustomHashMap.strategy
The hash strategy of this custom map.
|
protected CharHash.Strategy |
Char2LongOpenCustomHashMap.strategy
The hash strategy of this custom map.
|
protected CharHash.Strategy |
Char2ReferenceOpenCustomHashMap.strategy
The hash strategy of this custom map.
|
protected CharHash.Strategy |
CharOpenCustomHashSet.strategy
The hash strategy of this custom set.
|
protected CharHash.Strategy |
Char2ByteOpenCustomHashMap.strategy
The hash strategy of this custom map.
|
protected CharHash.Strategy |
Char2BooleanOpenCustomHashMap.strategy
The hash strategy of this custom map.
|
protected CharHash.Strategy |
CharLinkedOpenCustomHashSet.strategy
The hash strategy of this custom set.
|
protected CharHash.Strategy |
Char2IntOpenCustomHashMap.strategy
The hash strategy of this custom map.
|
protected CharHash.Strategy |
Char2ObjectOpenCustomHashMap.strategy
The hash strategy of this custom map.
|
protected CharHash.Strategy |
Char2DoubleOpenCustomHashMap.strategy
The hash strategy of this custom map.
|
protected CharHash.Strategy |
Char2CharOpenCustomHashMap.strategy
The hash strategy of this custom map.
|
protected CharHash.Strategy |
Char2ShortOpenCustomHashMap.strategy
The hash strategy of this custom map.
|
| Modifier and Type | Method and Description |
|---|---|
CharHash.Strategy |
Char2FloatOpenCustomHashMap.strategy()
Returns the hashing strategy.
|
CharHash.Strategy |
Char2LongOpenCustomHashMap.strategy()
Returns the hashing strategy.
|
CharHash.Strategy |
Char2ReferenceOpenCustomHashMap.strategy()
Returns the hashing strategy.
|
CharHash.Strategy |
CharOpenCustomHashSet.strategy()
Returns the hashing strategy.
|
CharHash.Strategy |
Char2ByteOpenCustomHashMap.strategy()
Returns the hashing strategy.
|
CharHash.Strategy |
Char2BooleanOpenCustomHashMap.strategy()
Returns the hashing strategy.
|
CharHash.Strategy |
CharLinkedOpenCustomHashSet.strategy()
Returns the hashing strategy.
|
CharHash.Strategy |
Char2IntOpenCustomHashMap.strategy()
Returns the hashing strategy.
|
CharHash.Strategy |
Char2ObjectOpenCustomHashMap.strategy()
Returns the hashing strategy.
|
CharHash.Strategy |
Char2DoubleOpenCustomHashMap.strategy()
Returns the hashing strategy.
|
CharHash.Strategy |
Char2CharOpenCustomHashMap.strategy()
Returns the hashing strategy.
|
CharHash.Strategy |
Char2ShortOpenCustomHashMap.strategy()
Returns the hashing strategy.
|
| Constructor and Description |
|---|
Char2BooleanOpenCustomHashMap(char[] k,
boolean[] v,
CharHash.Strategy strategy)
Creates a new hash map with
Hash.DEFAULT_LOAD_FACTOR as load factor using the elements of two parallel arrays. |
Char2BooleanOpenCustomHashMap(char[] k,
boolean[] v,
float f,
CharHash.Strategy strategy)
Creates a new hash map using the elements of two parallel arrays.
|
Char2BooleanOpenCustomHashMap(Char2BooleanMap m,
CharHash.Strategy strategy)
Creates a new hash map with
Hash.DEFAULT_LOAD_FACTOR as load factor copying a given type-specific one. |
Char2BooleanOpenCustomHashMap(Char2BooleanMap m,
float f,
CharHash.Strategy strategy)
Creates a new hash map copying a given type-specific one.
|
Char2BooleanOpenCustomHashMap(CharHash.Strategy strategy)
Creates a new hash map with initial expected
Hash.DEFAULT_INITIAL_SIZE entries
and Hash.DEFAULT_LOAD_FACTOR as load factor. |
Char2BooleanOpenCustomHashMap(int expected,
CharHash.Strategy strategy)
Creates a new hash map with
Hash.DEFAULT_LOAD_FACTOR as load factor. |
Char2BooleanOpenCustomHashMap(int expected,
float f,
CharHash.Strategy strategy)
Creates a new hash map.
|
Char2BooleanOpenCustomHashMap(Map<? extends Character,? extends Boolean> m,
CharHash.Strategy strategy)
Creates a new hash map with
Hash.DEFAULT_LOAD_FACTOR as load factor copying a given one. |
Char2BooleanOpenCustomHashMap(Map<? extends Character,? extends Boolean> m,
float f,
CharHash.Strategy strategy)
Creates a new hash map copying a given one.
|
Char2ByteOpenCustomHashMap(char[] k,
byte[] v,
CharHash.Strategy strategy)
Creates a new hash map with
Hash.DEFAULT_LOAD_FACTOR as load factor using the elements of two parallel arrays. |
Char2ByteOpenCustomHashMap(char[] k,
byte[] v,
float f,
CharHash.Strategy strategy)
Creates a new hash map using the elements of two parallel arrays.
|
Char2ByteOpenCustomHashMap(Char2ByteMap m,
CharHash.Strategy strategy)
Creates a new hash map with
Hash.DEFAULT_LOAD_FACTOR as load factor copying a given type-specific one. |
Char2ByteOpenCustomHashMap(Char2ByteMap m,
float f,
CharHash.Strategy strategy)
Creates a new hash map copying a given type-specific one.
|
Char2ByteOpenCustomHashMap(CharHash.Strategy strategy)
Creates a new hash map with initial expected
Hash.DEFAULT_INITIAL_SIZE entries
and Hash.DEFAULT_LOAD_FACTOR as load factor. |
Char2ByteOpenCustomHashMap(int expected,
CharHash.Strategy strategy)
Creates a new hash map with
Hash.DEFAULT_LOAD_FACTOR as load factor. |
Char2ByteOpenCustomHashMap(int expected,
float f,
CharHash.Strategy strategy)
Creates a new hash map.
|
Char2ByteOpenCustomHashMap(Map<? extends Character,? extends Byte> m,
CharHash.Strategy strategy)
Creates a new hash map with
Hash.DEFAULT_LOAD_FACTOR as load factor copying a given one. |
Char2ByteOpenCustomHashMap(Map<? extends Character,? extends Byte> m,
float f,
CharHash.Strategy strategy)
Creates a new hash map copying a given one.
|
Char2CharOpenCustomHashMap(char[] k,
char[] v,
CharHash.Strategy strategy)
Creates a new hash map with
Hash.DEFAULT_LOAD_FACTOR as load factor using the elements of two parallel arrays. |
Char2CharOpenCustomHashMap(char[] k,
char[] v,
float f,
CharHash.Strategy strategy)
Creates a new hash map using the elements of two parallel arrays.
|
Char2CharOpenCustomHashMap(Char2CharMap m,
CharHash.Strategy strategy)
Creates a new hash map with
Hash.DEFAULT_LOAD_FACTOR as load factor copying a given type-specific one. |
Char2CharOpenCustomHashMap(Char2CharMap m,
float f,
CharHash.Strategy strategy)
Creates a new hash map copying a given type-specific one.
|
Char2CharOpenCustomHashMap(CharHash.Strategy strategy)
Creates a new hash map with initial expected
Hash.DEFAULT_INITIAL_SIZE entries
and Hash.DEFAULT_LOAD_FACTOR as load factor. |
Char2CharOpenCustomHashMap(int expected,
CharHash.Strategy strategy)
Creates a new hash map with
Hash.DEFAULT_LOAD_FACTOR as load factor. |
Char2CharOpenCustomHashMap(int expected,
float f,
CharHash.Strategy strategy)
Creates a new hash map.
|
Char2CharOpenCustomHashMap(Map<? extends Character,? extends Character> m,
CharHash.Strategy strategy)
Creates a new hash map with
Hash.DEFAULT_LOAD_FACTOR as load factor copying a given one. |
Char2CharOpenCustomHashMap(Map<? extends Character,? extends Character> m,
float f,
CharHash.Strategy strategy)
Creates a new hash map copying a given one.
|
Char2DoubleOpenCustomHashMap(char[] k,
double[] v,
CharHash.Strategy strategy)
Creates a new hash map with
Hash.DEFAULT_LOAD_FACTOR as load factor using the elements of two parallel arrays. |
Char2DoubleOpenCustomHashMap(char[] k,
double[] v,
float f,
CharHash.Strategy strategy)
Creates a new hash map using the elements of two parallel arrays.
|
Char2DoubleOpenCustomHashMap(Char2DoubleMap m,
CharHash.Strategy strategy)
Creates a new hash map with
Hash.DEFAULT_LOAD_FACTOR as load factor copying a given type-specific one. |
Char2DoubleOpenCustomHashMap(Char2DoubleMap m,
float f,
CharHash.Strategy strategy)
Creates a new hash map copying a given type-specific one.
|
Char2DoubleOpenCustomHashMap(CharHash.Strategy strategy)
Creates a new hash map with initial expected
Hash.DEFAULT_INITIAL_SIZE entries
and Hash.DEFAULT_LOAD_FACTOR as load factor. |
Char2DoubleOpenCustomHashMap(int expected,
CharHash.Strategy strategy)
Creates a new hash map with
Hash.DEFAULT_LOAD_FACTOR as load factor. |
Char2DoubleOpenCustomHashMap(int expected,
float f,
CharHash.Strategy strategy)
Creates a new hash map.
|
Char2DoubleOpenCustomHashMap(Map<? extends Character,? extends Double> m,
CharHash.Strategy strategy)
Creates a new hash map with
Hash.DEFAULT_LOAD_FACTOR as load factor copying a given one. |
Char2DoubleOpenCustomHashMap(Map<? extends Character,? extends Double> m,
float f,
CharHash.Strategy strategy)
Creates a new hash map copying a given one.
|
Char2FloatOpenCustomHashMap(char[] k,
float[] v,
CharHash.Strategy strategy)
Creates a new hash map with
Hash.DEFAULT_LOAD_FACTOR as load factor using the elements of two parallel arrays. |
Char2FloatOpenCustomHashMap(char[] k,
float[] v,
float f,
CharHash.Strategy strategy)
Creates a new hash map using the elements of two parallel arrays.
|
Char2FloatOpenCustomHashMap(Char2FloatMap m,
CharHash.Strategy strategy)
Creates a new hash map with
Hash.DEFAULT_LOAD_FACTOR as load factor copying a given type-specific one. |
Char2FloatOpenCustomHashMap(Char2FloatMap m,
float f,
CharHash.Strategy strategy)
Creates a new hash map copying a given type-specific one.
|
Char2FloatOpenCustomHashMap(CharHash.Strategy strategy)
Creates a new hash map with initial expected
Hash.DEFAULT_INITIAL_SIZE entries
and Hash.DEFAULT_LOAD_FACTOR as load factor. |
Char2FloatOpenCustomHashMap(int expected,
CharHash.Strategy strategy)
Creates a new hash map with
Hash.DEFAULT_LOAD_FACTOR as load factor. |
Char2FloatOpenCustomHashMap(int expected,
float f,
CharHash.Strategy strategy)
Creates a new hash map.
|
Char2FloatOpenCustomHashMap(Map<? extends Character,? extends Float> m,
CharHash.Strategy strategy)
Creates a new hash map with
Hash.DEFAULT_LOAD_FACTOR as load factor copying a given one. |
Char2FloatOpenCustomHashMap(Map<? extends Character,? extends Float> m,
float f,
CharHash.Strategy strategy)
Creates a new hash map copying a given one.
|
Char2IntOpenCustomHashMap(char[] k,
int[] v,
CharHash.Strategy strategy)
Creates a new hash map with
Hash.DEFAULT_LOAD_FACTOR as load factor using the elements of two parallel arrays. |
Char2IntOpenCustomHashMap(char[] k,
int[] v,
float f,
CharHash.Strategy strategy)
Creates a new hash map using the elements of two parallel arrays.
|
Char2IntOpenCustomHashMap(Char2IntMap m,
CharHash.Strategy strategy)
Creates a new hash map with
Hash.DEFAULT_LOAD_FACTOR as load factor copying a given type-specific one. |
Char2IntOpenCustomHashMap(Char2IntMap m,
float f,
CharHash.Strategy strategy)
Creates a new hash map copying a given type-specific one.
|
Char2IntOpenCustomHashMap(CharHash.Strategy strategy)
Creates a new hash map with initial expected
Hash.DEFAULT_INITIAL_SIZE entries
and Hash.DEFAULT_LOAD_FACTOR as load factor. |
Char2IntOpenCustomHashMap(int expected,
CharHash.Strategy strategy)
Creates a new hash map with
Hash.DEFAULT_LOAD_FACTOR as load factor. |
Char2IntOpenCustomHashMap(int expected,
float f,
CharHash.Strategy strategy)
Creates a new hash map.
|
Char2IntOpenCustomHashMap(Map<? extends Character,? extends Integer> m,
CharHash.Strategy strategy)
Creates a new hash map with
Hash.DEFAULT_LOAD_FACTOR as load factor copying a given one. |
Char2IntOpenCustomHashMap(Map<? extends Character,? extends Integer> m,
float f,
CharHash.Strategy strategy)
Creates a new hash map copying a given one.
|
Char2LongOpenCustomHashMap(char[] k,
long[] v,
CharHash.Strategy strategy)
Creates a new hash map with
Hash.DEFAULT_LOAD_FACTOR as load factor using the elements of two parallel arrays. |
Char2LongOpenCustomHashMap(char[] k,
long[] v,
float f,
CharHash.Strategy strategy)
Creates a new hash map using the elements of two parallel arrays.
|
Char2LongOpenCustomHashMap(Char2LongMap m,
CharHash.Strategy strategy)
Creates a new hash map with
Hash.DEFAULT_LOAD_FACTOR as load factor copying a given type-specific one. |
Char2LongOpenCustomHashMap(Char2LongMap m,
float f,
CharHash.Strategy strategy)
Creates a new hash map copying a given type-specific one.
|
Char2LongOpenCustomHashMap(CharHash.Strategy strategy)
Creates a new hash map with initial expected
Hash.DEFAULT_INITIAL_SIZE entries
and Hash.DEFAULT_LOAD_FACTOR as load factor. |
Char2LongOpenCustomHashMap(int expected,
CharHash.Strategy strategy)
Creates a new hash map with
Hash.DEFAULT_LOAD_FACTOR as load factor. |
Char2LongOpenCustomHashMap(int expected,
float f,
CharHash.Strategy strategy)
Creates a new hash map.
|
Char2LongOpenCustomHashMap(Map<? extends Character,? extends Long> m,
CharHash.Strategy strategy)
Creates a new hash map with
Hash.DEFAULT_LOAD_FACTOR as load factor copying a given one. |
Char2LongOpenCustomHashMap(Map<? extends Character,? extends Long> m,
float f,
CharHash.Strategy strategy)
Creates a new hash map copying a given one.
|
Char2ObjectOpenCustomHashMap(char[] k,
V[] v,
CharHash.Strategy strategy)
Creates a new hash map with
Hash.DEFAULT_LOAD_FACTOR as load factor using the elements of two parallel arrays. |
Char2ObjectOpenCustomHashMap(char[] k,
V[] v,
float f,
CharHash.Strategy strategy)
Creates a new hash map using the elements of two parallel arrays.
|
Char2ObjectOpenCustomHashMap(Char2ObjectMap<V> m,
CharHash.Strategy strategy)
Creates a new hash map with
Hash.DEFAULT_LOAD_FACTOR as load factor copying a given type-specific one. |
Char2ObjectOpenCustomHashMap(Char2ObjectMap<V> m,
float f,
CharHash.Strategy strategy)
Creates a new hash map copying a given type-specific one.
|
Char2ObjectOpenCustomHashMap(CharHash.Strategy strategy)
Creates a new hash map with initial expected
Hash.DEFAULT_INITIAL_SIZE entries
and Hash.DEFAULT_LOAD_FACTOR as load factor. |
Char2ObjectOpenCustomHashMap(int expected,
CharHash.Strategy strategy)
Creates a new hash map with
Hash.DEFAULT_LOAD_FACTOR as load factor. |
Char2ObjectOpenCustomHashMap(int expected,
float f,
CharHash.Strategy strategy)
Creates a new hash map.
|
Char2ObjectOpenCustomHashMap(Map<? extends Character,? extends V> m,
CharHash.Strategy strategy)
Creates a new hash map with
Hash.DEFAULT_LOAD_FACTOR as load factor copying a given one. |
Char2ObjectOpenCustomHashMap(Map<? extends Character,? extends V> m,
float f,
CharHash.Strategy strategy)
Creates a new hash map copying a given one.
|
Char2ReferenceOpenCustomHashMap(char[] k,
V[] v,
CharHash.Strategy strategy)
Creates a new hash map with
Hash.DEFAULT_LOAD_FACTOR as load factor using the elements of two parallel arrays. |
Char2ReferenceOpenCustomHashMap(char[] k,
V[] v,
float f,
CharHash.Strategy strategy)
Creates a new hash map using the elements of two parallel arrays.
|
Char2ReferenceOpenCustomHashMap(Char2ReferenceMap<V> m,
CharHash.Strategy strategy)
Creates a new hash map with
Hash.DEFAULT_LOAD_FACTOR as load factor copying a given type-specific one. |
Char2ReferenceOpenCustomHashMap(Char2ReferenceMap<V> m,
float f,
CharHash.Strategy strategy)
Creates a new hash map copying a given type-specific one.
|
Char2ReferenceOpenCustomHashMap(CharHash.Strategy strategy)
Creates a new hash map with initial expected
Hash.DEFAULT_INITIAL_SIZE entries
and Hash.DEFAULT_LOAD_FACTOR as load factor. |
Char2ReferenceOpenCustomHashMap(int expected,
CharHash.Strategy strategy)
Creates a new hash map with
Hash.DEFAULT_LOAD_FACTOR as load factor. |
Char2ReferenceOpenCustomHashMap(int expected,
float f,
CharHash.Strategy strategy)
Creates a new hash map.
|
Char2ReferenceOpenCustomHashMap(Map<? extends Character,? extends V> m,
CharHash.Strategy strategy)
Creates a new hash map with
Hash.DEFAULT_LOAD_FACTOR as load factor copying a given one. |
Char2ReferenceOpenCustomHashMap(Map<? extends Character,? extends V> m,
float f,
CharHash.Strategy strategy)
Creates a new hash map copying a given one.
|
Char2ShortOpenCustomHashMap(char[] k,
short[] v,
CharHash.Strategy strategy)
Creates a new hash map with
Hash.DEFAULT_LOAD_FACTOR as load factor using the elements of two parallel arrays. |
Char2ShortOpenCustomHashMap(char[] k,
short[] v,
float f,
CharHash.Strategy strategy)
Creates a new hash map using the elements of two parallel arrays.
|
Char2ShortOpenCustomHashMap(Char2ShortMap m,
CharHash.Strategy strategy)
Creates a new hash map with
Hash.DEFAULT_LOAD_FACTOR as load factor copying a given type-specific one. |
Char2ShortOpenCustomHashMap(Char2ShortMap m,
float f,
CharHash.Strategy strategy)
Creates a new hash map copying a given type-specific one.
|
Char2ShortOpenCustomHashMap(CharHash.Strategy strategy)
Creates a new hash map with initial expected
Hash.DEFAULT_INITIAL_SIZE entries
and Hash.DEFAULT_LOAD_FACTOR as load factor. |
Char2ShortOpenCustomHashMap(int expected,
CharHash.Strategy strategy)
Creates a new hash map with
Hash.DEFAULT_LOAD_FACTOR as load factor. |
Char2ShortOpenCustomHashMap(int expected,
float f,
CharHash.Strategy strategy)
Creates a new hash map.
|
Char2ShortOpenCustomHashMap(Map<? extends Character,? extends Short> m,
CharHash.Strategy strategy)
Creates a new hash map with
Hash.DEFAULT_LOAD_FACTOR as load factor copying a given one. |
Char2ShortOpenCustomHashMap(Map<? extends Character,? extends Short> m,
float f,
CharHash.Strategy strategy)
Creates a new hash map copying a given one.
|
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 © 2020. All rights reserved.