AddKey adds a single key to this map
(key InstanceKey)
| 23 | |
| 24 | // AddKey adds a single key to this map |
| 25 | func (ikm *InstanceKeyMap) AddKey(key InstanceKey) { |
| 26 | (*ikm)[key] = true |
| 27 | } |
| 28 | |
| 29 | // AddKeys adds all given keys to this map |
| 30 | func (ikm *InstanceKeyMap) AddKeys(keys []InstanceKey) { |
no outgoing calls
no test coverage detected