| Package | Description |
|---|---|
| it.unimi.dsi.fastutil.longs |
Provides type-specific classes for long elements or keys.
|
| Modifier and Type | Field and Description |
|---|---|
protected LongHash.Strategy |
Long2ObjectOpenCustomHashMap.strategy
The hash strategy of this custom map.
|
| Modifier and Type | Method and Description |
|---|---|
LongHash.Strategy |
Long2ObjectOpenCustomHashMap.strategy()
Returns the hashing strategy.
|
| Constructor and Description |
|---|
Long2ObjectOpenCustomHashMap(int expected,
float f,
LongHash.Strategy strategy)
Creates a new hash map.
|
Long2ObjectOpenCustomHashMap(int expected,
LongHash.Strategy strategy)
Creates a new hash map with
Hash.DEFAULT_LOAD_FACTOR as load factor. |
Long2ObjectOpenCustomHashMap(long[] k,
V[] v,
float f,
LongHash.Strategy strategy)
Creates a new hash map using the elements of two parallel arrays.
|
Long2ObjectOpenCustomHashMap(long[] k,
V[] v,
LongHash.Strategy strategy)
Creates a new hash map with
Hash.DEFAULT_LOAD_FACTOR as load factor using the elements of two parallel arrays. |
Long2ObjectOpenCustomHashMap(Long2ObjectMap<V> m,
float f,
LongHash.Strategy strategy)
Creates a new hash map copying a given type-specific one.
|
Long2ObjectOpenCustomHashMap(Long2ObjectMap<V> m,
LongHash.Strategy strategy)
Creates a new hash map with
Hash.DEFAULT_LOAD_FACTOR as load factor copying a given type-specific one. |
Long2ObjectOpenCustomHashMap(LongHash.Strategy strategy)
Creates a new hash map with initial expected
Hash.DEFAULT_INITIAL_SIZE entries
and Hash.DEFAULT_LOAD_FACTOR as load factor. |
Long2ObjectOpenCustomHashMap(Map<? extends Long,? extends V> m,
float f,
LongHash.Strategy strategy)
Creates a new hash map copying a given one.
|
Long2ObjectOpenCustomHashMap(Map<? extends Long,? extends V> m,
LongHash.Strategy strategy)
Creates a new hash map with
Hash.DEFAULT_LOAD_FACTOR as load factor copying a given one. |
Copyright © 2016. All rights reserved.