remove method
V?
remove(
- K key
Remove the entry at key
and return the removed value. Returns null if
the key was not in the map. Does not call this.onExpired
.
Implementation
V? remove(K key) => _map.remove(key);