| Package | Description |
|---|---|
| it.unimi.dsi.fastutil.ints |
Provides type-specific classes for integer elements or keys.
|
| Modifier and Type | Field and Description |
|---|---|
protected IntHash.Strategy |
Int2ReferenceOpenCustomHashMap.strategy
The hash strategy of this custom map.
|
protected IntHash.Strategy |
Int2IntOpenCustomHashMap.strategy
The hash strategy of this custom map.
|
protected IntHash.Strategy |
Int2BooleanOpenCustomHashMap.strategy
The hash strategy of this custom map.
|
protected IntHash.Strategy |
Int2CharOpenCustomHashMap.strategy
The hash strategy of this custom map.
|
protected IntHash.Strategy |
Int2ByteOpenCustomHashMap.strategy
The hash strategy of this custom map.
|
protected IntHash.Strategy |
Int2LongOpenCustomHashMap.strategy
The hash strategy of this custom map.
|
protected IntHash.Strategy |
Int2ShortOpenCustomHashMap.strategy
The hash strategy of this custom map.
|
protected IntHash.Strategy |
IntLinkedOpenCustomHashSet.strategy
The hash strategy of this custom set.
|
protected IntHash.Strategy |
Int2ObjectOpenCustomHashMap.strategy
The hash strategy of this custom map.
|
protected IntHash.Strategy |
Int2FloatOpenCustomHashMap.strategy
The hash strategy of this custom map.
|
protected IntHash.Strategy |
Int2DoubleOpenCustomHashMap.strategy
The hash strategy of this custom map.
|
protected IntHash.Strategy |
IntOpenCustomHashSet.strategy
The hash strategy of this custom set.
|
| Modifier and Type | Method and Description |
|---|---|
IntHash.Strategy |
Int2ReferenceOpenCustomHashMap.strategy()
Returns the hashing strategy.
|
IntHash.Strategy |
Int2IntOpenCustomHashMap.strategy()
Returns the hashing strategy.
|
IntHash.Strategy |
Int2BooleanOpenCustomHashMap.strategy()
Returns the hashing strategy.
|
IntHash.Strategy |
Int2CharOpenCustomHashMap.strategy()
Returns the hashing strategy.
|
IntHash.Strategy |
Int2ByteOpenCustomHashMap.strategy()
Returns the hashing strategy.
|
IntHash.Strategy |
Int2LongOpenCustomHashMap.strategy()
Returns the hashing strategy.
|
IntHash.Strategy |
Int2ShortOpenCustomHashMap.strategy()
Returns the hashing strategy.
|
IntHash.Strategy |
IntLinkedOpenCustomHashSet.strategy()
Returns the hashing strategy.
|
IntHash.Strategy |
Int2ObjectOpenCustomHashMap.strategy()
Returns the hashing strategy.
|
IntHash.Strategy |
Int2FloatOpenCustomHashMap.strategy()
Returns the hashing strategy.
|
IntHash.Strategy |
Int2DoubleOpenCustomHashMap.strategy()
Returns the hashing strategy.
|
IntHash.Strategy |
IntOpenCustomHashSet.strategy()
Returns the hashing strategy.
|
| Constructor and Description |
|---|
Int2BooleanOpenCustomHashMap(int[] k,
boolean[] v,
float f,
IntHash.Strategy strategy)
Creates a new hash map using the elements of two parallel arrays.
|
Int2BooleanOpenCustomHashMap(int[] k,
boolean[] v,
IntHash.Strategy strategy)
Creates a new hash map with
Hash.DEFAULT_LOAD_FACTOR as load factor using the elements of two parallel arrays. |
Int2BooleanOpenCustomHashMap(Int2BooleanMap m,
float f,
IntHash.Strategy strategy)
Creates a new hash map copying a given type-specific one.
|
Int2BooleanOpenCustomHashMap(Int2BooleanMap m,
IntHash.Strategy strategy)
Creates a new hash map with
Hash.DEFAULT_LOAD_FACTOR as load factor copying a given type-specific one. |
Int2BooleanOpenCustomHashMap(int expected,
float f,
IntHash.Strategy strategy)
Creates a new hash map.
|
Int2BooleanOpenCustomHashMap(IntHash.Strategy strategy)
Creates a new hash map with initial expected
Hash.DEFAULT_INITIAL_SIZE entries
and Hash.DEFAULT_LOAD_FACTOR as load factor. |
Int2BooleanOpenCustomHashMap(int expected,
IntHash.Strategy strategy)
Creates a new hash map with
Hash.DEFAULT_LOAD_FACTOR as load factor. |
Int2BooleanOpenCustomHashMap(Map<? extends Integer,? extends Boolean> m,
float f,
IntHash.Strategy strategy)
Creates a new hash map copying a given one.
|
Int2BooleanOpenCustomHashMap(Map<? extends Integer,? extends Boolean> m,
IntHash.Strategy strategy)
Creates a new hash map with
Hash.DEFAULT_LOAD_FACTOR as load factor copying a given one. |
Int2ByteOpenCustomHashMap(int[] k,
byte[] v,
float f,
IntHash.Strategy strategy)
Creates a new hash map using the elements of two parallel arrays.
|
Int2ByteOpenCustomHashMap(int[] k,
byte[] v,
IntHash.Strategy strategy)
Creates a new hash map with
Hash.DEFAULT_LOAD_FACTOR as load factor using the elements of two parallel arrays. |
Int2ByteOpenCustomHashMap(Int2ByteMap m,
float f,
IntHash.Strategy strategy)
Creates a new hash map copying a given type-specific one.
|
Int2ByteOpenCustomHashMap(Int2ByteMap m,
IntHash.Strategy strategy)
Creates a new hash map with
Hash.DEFAULT_LOAD_FACTOR as load factor copying a given type-specific one. |
Int2ByteOpenCustomHashMap(int expected,
float f,
IntHash.Strategy strategy)
Creates a new hash map.
|
Int2ByteOpenCustomHashMap(IntHash.Strategy strategy)
Creates a new hash map with initial expected
Hash.DEFAULT_INITIAL_SIZE entries
and Hash.DEFAULT_LOAD_FACTOR as load factor. |
Int2ByteOpenCustomHashMap(int expected,
IntHash.Strategy strategy)
Creates a new hash map with
Hash.DEFAULT_LOAD_FACTOR as load factor. |
Int2ByteOpenCustomHashMap(Map<? extends Integer,? extends Byte> m,
float f,
IntHash.Strategy strategy)
Creates a new hash map copying a given one.
|
Int2ByteOpenCustomHashMap(Map<? extends Integer,? extends Byte> m,
IntHash.Strategy strategy)
Creates a new hash map with
Hash.DEFAULT_LOAD_FACTOR as load factor copying a given one. |
Int2CharOpenCustomHashMap(int[] k,
char[] v,
float f,
IntHash.Strategy strategy)
Creates a new hash map using the elements of two parallel arrays.
|
Int2CharOpenCustomHashMap(int[] k,
char[] v,
IntHash.Strategy strategy)
Creates a new hash map with
Hash.DEFAULT_LOAD_FACTOR as load factor using the elements of two parallel arrays. |
Int2CharOpenCustomHashMap(Int2CharMap m,
float f,
IntHash.Strategy strategy)
Creates a new hash map copying a given type-specific one.
|
Int2CharOpenCustomHashMap(Int2CharMap m,
IntHash.Strategy strategy)
Creates a new hash map with
Hash.DEFAULT_LOAD_FACTOR as load factor copying a given type-specific one. |
Int2CharOpenCustomHashMap(int expected,
float f,
IntHash.Strategy strategy)
Creates a new hash map.
|
Int2CharOpenCustomHashMap(IntHash.Strategy strategy)
Creates a new hash map with initial expected
Hash.DEFAULT_INITIAL_SIZE entries
and Hash.DEFAULT_LOAD_FACTOR as load factor. |
Int2CharOpenCustomHashMap(int expected,
IntHash.Strategy strategy)
Creates a new hash map with
Hash.DEFAULT_LOAD_FACTOR as load factor. |
Int2CharOpenCustomHashMap(Map<? extends Integer,? extends Character> m,
float f,
IntHash.Strategy strategy)
Creates a new hash map copying a given one.
|
Int2CharOpenCustomHashMap(Map<? extends Integer,? extends Character> m,
IntHash.Strategy strategy)
Creates a new hash map with
Hash.DEFAULT_LOAD_FACTOR as load factor copying a given one. |
Int2DoubleOpenCustomHashMap(int[] k,
double[] v,
float f,
IntHash.Strategy strategy)
Creates a new hash map using the elements of two parallel arrays.
|
Int2DoubleOpenCustomHashMap(int[] k,
double[] v,
IntHash.Strategy strategy)
Creates a new hash map with
Hash.DEFAULT_LOAD_FACTOR as load factor using the elements of two parallel arrays. |
Int2DoubleOpenCustomHashMap(Int2DoubleMap m,
float f,
IntHash.Strategy strategy)
Creates a new hash map copying a given type-specific one.
|
Int2DoubleOpenCustomHashMap(Int2DoubleMap m,
IntHash.Strategy strategy)
Creates a new hash map with
Hash.DEFAULT_LOAD_FACTOR as load factor copying a given type-specific one. |
Int2DoubleOpenCustomHashMap(int expected,
float f,
IntHash.Strategy strategy)
Creates a new hash map.
|
Int2DoubleOpenCustomHashMap(IntHash.Strategy strategy)
Creates a new hash map with initial expected
Hash.DEFAULT_INITIAL_SIZE entries
and Hash.DEFAULT_LOAD_FACTOR as load factor. |
Int2DoubleOpenCustomHashMap(int expected,
IntHash.Strategy strategy)
Creates a new hash map with
Hash.DEFAULT_LOAD_FACTOR as load factor. |
Int2DoubleOpenCustomHashMap(Map<? extends Integer,? extends Double> m,
float f,
IntHash.Strategy strategy)
Creates a new hash map copying a given one.
|
Int2DoubleOpenCustomHashMap(Map<? extends Integer,? extends Double> m,
IntHash.Strategy strategy)
Creates a new hash map with
Hash.DEFAULT_LOAD_FACTOR as load factor copying a given one. |
Int2FloatOpenCustomHashMap(int[] k,
float[] v,
float f,
IntHash.Strategy strategy)
Creates a new hash map using the elements of two parallel arrays.
|
Int2FloatOpenCustomHashMap(int[] k,
float[] v,
IntHash.Strategy strategy)
Creates a new hash map with
Hash.DEFAULT_LOAD_FACTOR as load factor using the elements of two parallel arrays. |
Int2FloatOpenCustomHashMap(Int2FloatMap m,
float f,
IntHash.Strategy strategy)
Creates a new hash map copying a given type-specific one.
|
Int2FloatOpenCustomHashMap(Int2FloatMap m,
IntHash.Strategy strategy)
Creates a new hash map with
Hash.DEFAULT_LOAD_FACTOR as load factor copying a given type-specific one. |
Int2FloatOpenCustomHashMap(int expected,
float f,
IntHash.Strategy strategy)
Creates a new hash map.
|
Int2FloatOpenCustomHashMap(IntHash.Strategy strategy)
Creates a new hash map with initial expected
Hash.DEFAULT_INITIAL_SIZE entries
and Hash.DEFAULT_LOAD_FACTOR as load factor. |
Int2FloatOpenCustomHashMap(int expected,
IntHash.Strategy strategy)
Creates a new hash map with
Hash.DEFAULT_LOAD_FACTOR as load factor. |
Int2FloatOpenCustomHashMap(Map<? extends Integer,? extends Float> m,
float f,
IntHash.Strategy strategy)
Creates a new hash map copying a given one.
|
Int2FloatOpenCustomHashMap(Map<? extends Integer,? extends Float> m,
IntHash.Strategy strategy)
Creates a new hash map with
Hash.DEFAULT_LOAD_FACTOR as load factor copying a given one. |
Int2IntOpenCustomHashMap(int[] k,
int[] v,
float f,
IntHash.Strategy strategy)
Creates a new hash map using the elements of two parallel arrays.
|
Int2IntOpenCustomHashMap(int[] k,
int[] v,
IntHash.Strategy strategy)
Creates a new hash map with
Hash.DEFAULT_LOAD_FACTOR as load factor using the elements of two parallel arrays. |
Int2IntOpenCustomHashMap(Int2IntMap m,
float f,
IntHash.Strategy strategy)
Creates a new hash map copying a given type-specific one.
|
Int2IntOpenCustomHashMap(Int2IntMap m,
IntHash.Strategy strategy)
Creates a new hash map with
Hash.DEFAULT_LOAD_FACTOR as load factor copying a given type-specific one. |
Int2IntOpenCustomHashMap(int expected,
float f,
IntHash.Strategy strategy)
Creates a new hash map.
|
Int2IntOpenCustomHashMap(IntHash.Strategy strategy)
Creates a new hash map with initial expected
Hash.DEFAULT_INITIAL_SIZE entries
and Hash.DEFAULT_LOAD_FACTOR as load factor. |
Int2IntOpenCustomHashMap(int expected,
IntHash.Strategy strategy)
Creates a new hash map with
Hash.DEFAULT_LOAD_FACTOR as load factor. |
Int2IntOpenCustomHashMap(Map<? extends Integer,? extends Integer> m,
float f,
IntHash.Strategy strategy)
Creates a new hash map copying a given one.
|
Int2IntOpenCustomHashMap(Map<? extends Integer,? extends Integer> m,
IntHash.Strategy strategy)
Creates a new hash map with
Hash.DEFAULT_LOAD_FACTOR as load factor copying a given one. |
Int2LongOpenCustomHashMap(int[] k,
long[] v,
float f,
IntHash.Strategy strategy)
Creates a new hash map using the elements of two parallel arrays.
|
Int2LongOpenCustomHashMap(int[] k,
long[] v,
IntHash.Strategy strategy)
Creates a new hash map with
Hash.DEFAULT_LOAD_FACTOR as load factor using the elements of two parallel arrays. |
Int2LongOpenCustomHashMap(Int2LongMap m,
float f,
IntHash.Strategy strategy)
Creates a new hash map copying a given type-specific one.
|
Int2LongOpenCustomHashMap(Int2LongMap m,
IntHash.Strategy strategy)
Creates a new hash map with
Hash.DEFAULT_LOAD_FACTOR as load factor copying a given type-specific one. |
Int2LongOpenCustomHashMap(int expected,
float f,
IntHash.Strategy strategy)
Creates a new hash map.
|
Int2LongOpenCustomHashMap(IntHash.Strategy strategy)
Creates a new hash map with initial expected
Hash.DEFAULT_INITIAL_SIZE entries
and Hash.DEFAULT_LOAD_FACTOR as load factor. |
Int2LongOpenCustomHashMap(int expected,
IntHash.Strategy strategy)
Creates a new hash map with
Hash.DEFAULT_LOAD_FACTOR as load factor. |
Int2LongOpenCustomHashMap(Map<? extends Integer,? extends Long> m,
float f,
IntHash.Strategy strategy)
Creates a new hash map copying a given one.
|
Int2LongOpenCustomHashMap(Map<? extends Integer,? extends Long> m,
IntHash.Strategy strategy)
Creates a new hash map with
Hash.DEFAULT_LOAD_FACTOR as load factor copying a given one. |
Int2ObjectOpenCustomHashMap(int[] k,
V[] v,
float f,
IntHash.Strategy strategy)
Creates a new hash map using the elements of two parallel arrays.
|
Int2ObjectOpenCustomHashMap(int[] k,
V[] v,
IntHash.Strategy strategy)
Creates a new hash map with
Hash.DEFAULT_LOAD_FACTOR as load factor using the elements of two parallel arrays. |
Int2ObjectOpenCustomHashMap(Int2ObjectMap<V> m,
float f,
IntHash.Strategy strategy)
Creates a new hash map copying a given type-specific one.
|
Int2ObjectOpenCustomHashMap(Int2ObjectMap<V> m,
IntHash.Strategy strategy)
Creates a new hash map with
Hash.DEFAULT_LOAD_FACTOR as load factor copying a given type-specific one. |
Int2ObjectOpenCustomHashMap(int expected,
float f,
IntHash.Strategy strategy)
Creates a new hash map.
|
Int2ObjectOpenCustomHashMap(IntHash.Strategy strategy)
Creates a new hash map with initial expected
Hash.DEFAULT_INITIAL_SIZE entries
and Hash.DEFAULT_LOAD_FACTOR as load factor. |
Int2ObjectOpenCustomHashMap(int expected,
IntHash.Strategy strategy)
Creates a new hash map with
Hash.DEFAULT_LOAD_FACTOR as load factor. |
Int2ObjectOpenCustomHashMap(Map<? extends Integer,? extends V> m,
float f,
IntHash.Strategy strategy)
Creates a new hash map copying a given one.
|
Int2ObjectOpenCustomHashMap(Map<? extends Integer,? extends V> m,
IntHash.Strategy strategy)
Creates a new hash map with
Hash.DEFAULT_LOAD_FACTOR as load factor copying a given one. |
Int2ReferenceOpenCustomHashMap(int[] k,
V[] v,
float f,
IntHash.Strategy strategy)
Creates a new hash map using the elements of two parallel arrays.
|
Int2ReferenceOpenCustomHashMap(int[] k,
V[] v,
IntHash.Strategy strategy)
Creates a new hash map with
Hash.DEFAULT_LOAD_FACTOR as load factor using the elements of two parallel arrays. |
Int2ReferenceOpenCustomHashMap(Int2ReferenceMap<V> m,
float f,
IntHash.Strategy strategy)
Creates a new hash map copying a given type-specific one.
|
Int2ReferenceOpenCustomHashMap(Int2ReferenceMap<V> m,
IntHash.Strategy strategy)
Creates a new hash map with
Hash.DEFAULT_LOAD_FACTOR as load factor copying a given type-specific one. |
Int2ReferenceOpenCustomHashMap(int expected,
float f,
IntHash.Strategy strategy)
Creates a new hash map.
|
Int2ReferenceOpenCustomHashMap(IntHash.Strategy strategy)
Creates a new hash map with initial expected
Hash.DEFAULT_INITIAL_SIZE entries
and Hash.DEFAULT_LOAD_FACTOR as load factor. |
Int2ReferenceOpenCustomHashMap(int expected,
IntHash.Strategy strategy)
Creates a new hash map with
Hash.DEFAULT_LOAD_FACTOR as load factor. |
Int2ReferenceOpenCustomHashMap(Map<? extends Integer,? extends V> m,
float f,
IntHash.Strategy strategy)
Creates a new hash map copying a given one.
|
Int2ReferenceOpenCustomHashMap(Map<? extends Integer,? extends V> m,
IntHash.Strategy strategy)
Creates a new hash map with
Hash.DEFAULT_LOAD_FACTOR as load factor copying a given one. |
Int2ShortOpenCustomHashMap(int[] k,
short[] v,
float f,
IntHash.Strategy strategy)
Creates a new hash map using the elements of two parallel arrays.
|
Int2ShortOpenCustomHashMap(int[] k,
short[] v,
IntHash.Strategy strategy)
Creates a new hash map with
Hash.DEFAULT_LOAD_FACTOR as load factor using the elements of two parallel arrays. |
Int2ShortOpenCustomHashMap(Int2ShortMap m,
float f,
IntHash.Strategy strategy)
Creates a new hash map copying a given type-specific one.
|
Int2ShortOpenCustomHashMap(Int2ShortMap m,
IntHash.Strategy strategy)
Creates a new hash map with
Hash.DEFAULT_LOAD_FACTOR as load factor copying a given type-specific one. |
Int2ShortOpenCustomHashMap(int expected,
float f,
IntHash.Strategy strategy)
Creates a new hash map.
|
Int2ShortOpenCustomHashMap(IntHash.Strategy strategy)
Creates a new hash map with initial expected
Hash.DEFAULT_INITIAL_SIZE entries
and Hash.DEFAULT_LOAD_FACTOR as load factor. |
Int2ShortOpenCustomHashMap(int expected,
IntHash.Strategy strategy)
Creates a new hash map with
Hash.DEFAULT_LOAD_FACTOR as load factor. |
Int2ShortOpenCustomHashMap(Map<? extends Integer,? extends Short> m,
float f,
IntHash.Strategy strategy)
Creates a new hash map copying a given one.
|
Int2ShortOpenCustomHashMap(Map<? extends Integer,? extends Short> m,
IntHash.Strategy strategy)
Creates a new hash map with
Hash.DEFAULT_LOAD_FACTOR as load factor copying a given one. |
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 © 2020. All rights reserved.