Contains returns true if the dictionary contains an entry with the given key.
(key interface{})
| 33 | // Contains returns true if the dictionary contains an entry with the given |
| 34 | // key. |
| 35 | Contains(key interface{}) bool |
| 36 | // Remove removes the entry with the given key. If no entry with the given |
| 37 | // key exists then this call is a no-op. |
| 38 | Remove(key interface{}) |
no outgoing calls