Add inserts the key-value pair, replacing any existing entry with the same key.
(key, val interface{})
| 28 | // Add inserts the key-value pair, replacing any existing entry with the |
| 29 | // same key. |
| 30 | Add(key, val interface{}) |
| 31 | // Lookup searches for the value of the entry with the given key. |
| 32 | Lookup(key interface{}) (val interface{}, found bool) |
| 33 | // Contains returns true if the dictionary contains an entry with the given |
no outgoing calls