| Modifier and Type | Method and Description |
|---|---|
PersistentMap<K,V> |
PersistentMap.clone()
Cloning takes constant time, regardless of the size of the map.
|
PersistentMap<K,V> |
PersistentMap.put(K key,
V value)
Creates and returns a new
PersistentMap identical to
this one, except it contains a mapping from key to
value. |
PersistentMap<K,V> |
PersistentMap.putAll(PersistentMap<K,V> map)
Put all the mappings in the given map into this map, throwing
out conflicting mappings from this set as necessary.
|
PersistentMap<K,V> |
PersistentMap.remove(K key)
Make a new
PersistentMap identical to this one,
except that it does not contain a mapping for key. |
| Modifier and Type | Method and Description |
|---|---|
PersistentMap<K,V> |
PersistentMap.putAll(PersistentMap<K,V> map)
Put all the mappings in the given map into this map, throwing
out conflicting mappings from this set as necessary.
|
Copyright (c) 2006 C. Scott Ananian