remove method
Implementation
V remove(Object key) {
if (!_validKey(key)) return null;
_SplayTreeMapNode<K, V> mapRoot = _remove(key);
if (mapRoot != null) return mapRoot.value;
return null;
}
V remove(Object key) {
if (!_validKey(key)) return null;
_SplayTreeMapNode<K, V> mapRoot = _remove(key);
if (mapRoot != null) return mapRoot.value;
return null;
}