Returns the value of the mapping with the specified key. @param key the key. @return the value of the mapping with the specified key, or null if no mapping for the specified key is found.
(long key)
| 26 | * if no mapping for the specified key is found. |
| 27 | */ |
| 28 | V get(long key); |
| 29 | |
| 30 | V getOrDefault(long key, V defaultValue); |
| 31 |
no outgoing calls