Associates the specified value with the specified key in this map. If the map already contains the specified key, replaces the key's mapping with the value specified.
(K key, V value)
| 11 | * If the map already contains the specified key, replaces the key's mapping |
| 12 | * with the value specified. */ |
| 13 | void put(K key, V value); |
| 14 | |
| 15 | /** Returns the value to which the specified key is mapped, or null if this |
| 16 | * map contains no mapping for the key. */ |
no outgoing calls