Remove all the values associated with the given key @param key the key to be removed @return list of all value being removed
(K key)
| 134 | * @return list of all value being removed |
| 135 | */ |
| 136 | public Collection<V> removeKey(K key) { |
| 137 | return mMap.remove(key) ; |
| 138 | } |
| 139 | |
| 140 | /** |
| 141 | * Get a set of all the keys in this map. |
no test coverage detected