Get returns the value of the entry with the given key.
(key interface{})
| 25 | type I interface { |
| 26 | // Get returns the value of the entry with the given key. |
| 27 | Get(key interface{}) (val interface{}) |
| 28 | // Add inserts the key-value pair, replacing any existing entry with the |
| 29 | // same key. |
| 30 | Add(key, val interface{}) |
no outgoing calls