Maps the specified key to the specified value. @param key the key. @param value the value. @return the value of any previous mapping with the specified key or null if there was no such mapping.
(long key, V value)
| 38 | * {@code null} if there was no such mapping. |
| 39 | */ |
| 40 | V put(long key, V value); |
| 41 | |
| 42 | V putIfAbsent(long key, V value); |
| 43 |
no outgoing calls