public interface MapFromIntTo<V>
int
to objects.JsMapFromIntTo
Modifier and Type | Method and Description |
---|---|
V |
get(int key)
Retrieves a value for the specified key.
|
boolean |
hasKey(int key)
Indicates whether the map contains a value for the specified key.
|
ArrayOfInt |
keys()
The keys contained within this map.
|
void |
put(int key,
V value)
Associates a value to the specified key.
|
void |
remove(int key)
Removes the value associated with the specified value, if one exists.
|
ArrayOf<V> |
values()
The values contained in this map.
|
V get(int key)
boolean hasKey(int key)
ArrayOfInt keys()
void put(int key, V value)
void remove(int key)
Copyright © 2018. All rights reserved.