Package | Description |
---|---|
com.carrotsearch.hppc |
Modifier and Type | Interface and Description |
---|---|
interface |
IntObjectMap<VType>
An associative container with unique binding from keys to a single value.
|
Modifier and Type | Class and Description |
---|---|
class |
IntObjectOpenHashMap<VType>
A hash map of
int to VType , implemented using open
addressing with linear probing for collision resolution. |
Modifier and Type | Method and Description |
---|---|
static <VType> IntObjectOpenHashMap<VType> |
IntObjectOpenHashMap.from(IntObjectAssociativeContainer<VType> container)
Create a hash map from another associative container.
|
int |
IntObjectMap.putAll(IntObjectAssociativeContainer<? extends VType> container)
Puts all keys from another container to this map, replacing the values
of existing keys, if such keys are present.
|
int |
IntObjectOpenHashMap.putAll(IntObjectAssociativeContainer<? extends VType> container)
Puts all keys from another container to this map, replacing the values
of existing keys, if such keys are present.
|
Constructor and Description |
---|
IntObjectOpenHashMap(IntObjectAssociativeContainer<VType> container)
Create a hash map from all key-value pairs of another container.
|
Copyright © 2014 Carrot Search s.c.. All rights reserved.