| 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 |
Int2ObjectOpenCustomHashMap.strategy
The hash strategy of this custom map.
|
| Modifier and Type | Method and Description |
|---|---|
IntHash.Strategy |
Int2ObjectOpenCustomHashMap.strategy()
Returns the hashing strategy.
|
| Constructor and Description |
|---|
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. |
Copyright © 2016. All rights reserved.